Disputes
List Disputes
GET
/
disputes
Authorization
Header
Query
curl --request GET \
--url https://api.sandbox.saalal.com/v1/disputes \
--header 'Authorization: <authorization>'
{
"data": [
{
"explanation": "No real explanation even now",
"reason": "duplicate",
"slug": "submitted",
"status": "submitted",
"transaction_slug": "962b954d-bbd3-4b03-8a70-80fb595e9049"
}
],
"message": "OK",
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 20,
"to": 1,
"total": 1
},
"statusCode": 200
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Headers
Accept
string
Query Parameters
page
integer
per_page
integer
Response
200 - application/json
data
object[]
message
string
meta
object
statusCode
integer
curl --request GET \
--url https://api.sandbox.saalal.com/v1/disputes \
--header 'Authorization: <authorization>'
{
"data": [
{
"explanation": "No real explanation even now",
"reason": "duplicate",
"slug": "submitted",
"status": "submitted",
"transaction_slug": "962b954d-bbd3-4b03-8a70-80fb595e9049"
}
],
"message": "OK",
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 20,
"to": 1,
"total": 1
},
"statusCode": 200
}