Skip to main content
GET
/
columns
/
{column_id}
Get column
curl --request GET \
  --url https://app.usequeue.com/api/v1/columns/{column_id} \
  --header 'Authorization: Bearer <token>'
{
  "success": true,
  "column": {
    "id": "a1b2c3d4",
    "title": "In Progress",
    "position": 2,
    "stage": "in_queue",
    "finished": false,
    "start_timer": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

column_id
string
required

Response

200 - application/json

Successful response

success
boolean
Example:

true

column
object