List pending jobs for a partner
curl --request GET \
  --url https://api.rampartcorporation.com/v2/job/pending \
  --header 'Authorization: Bearer <token>'
{
  "data": [
    {
      "client_id": "<string>",
      "job_id": "<string>",
      "sync_type": "HISTORICAL",
      "from": "2023-11-07T05:31:56Z",
      "to": "2023-11-07T05:31:56Z"
    }
  ],
  "pagination": {
    "page": 123,
    "limit": 123,
    "total": 123,
    "totalPages": 123,
    "hasNext": true,
    "hasPrev": true
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <API_KEY>.

Query Parameters

limit
number

Items per page (1-100)

page
number

Page number

Response

200 - application/json

Successful response with pending jobs and pagination

The response is of type object.