GET
/
api
/
v1
/
conversations
/
{conversation_id}
/
messages
/
page
Get Messages Page
curl --request GET \
  --url https://api.jobsim.work/api/v1/conversations/{conversation_id}/messages/page \
  --header 'Authorization: Bearer <token>'
{
  "detail": [
    {
      "loc": [
        "<string>"
      ],
      "msg": "<string>",
      "type": "<string>"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Path Parameters

conversation_id
string
required

Query Parameters

limit
integer
default:50
Required range: 1 <= x <= 200
before
string

Message ID cursor for pagination

Response

Successful Response