GET
/
v1
/
ticketing
/
{collection_id}
/
users
/
{user_id}
curl --request GET \
  --url http://localhost:8000/api/v1/ticketing/{collection_id}/users/{user_id}
{
  "data": {
    "id": "<string>",
    "name": "<string>",
    "first_name": "<string>",
    "last_name": "<string>",
    "email": "<string>",
    "photo_url": "<string>",
    "updated_at": "<string>",
    "created_at": "<string>"
  }
}

Path Parameters

collection_id
string
required
user_id
string
required

Query Parameters

raw
boolean

Include raw response. When you want more data from the source

Response

200 - application/json
data
object
required