Skip to main content

Get all Callback Logs

Callback Logs Endpoint

Retrieve details of all Callbacklogs.

Badge https://sandbox.tickpay.com/api/v1/callbacklogs

Request

To access this endpoint, you need to provide a valid access token in the Authorization header.

Use the following cURL command to retrieve details of all Callbacklogs:

curl -X 'GET' \
'https://sandbox.tickpay.com/api/v1/callbackLogs?status=SUCCESS&pageNumber=1&pageSize=10' \
-H 'accept: application/json' \
-H 'Authorization: Bearer your_access_token'

Query parameters

ParameterDescriptionRequired
operationStatus of the callback call. Accepted valuesfalse
pageSizeNumber of items to include per page.true
pageNumberThe page number to retrieve.true

Accepted values

ParameterDescription
operationSUCCESS, ERROR

Response

The response will contain a data object, along with additional information:

{
"messageError": null,
"success": true,
"pageNumber": 1,
"pageSize": 10,
"totalItems": 0,
"totalPages": 0,
"items": []
}

Response Properties

ParameterDescriptionDefault Value
messageErrorError message.null
successIndicates whether the request was successful.true
pageNumberIndicates the current page number.0
pageSizeIndicates the page size.0
totalItemsTotal number of items.0
totalPagesTotal number of pages.0
items PropertiesAll logs searched[]