Cards
List Card
GET
/
cards
Authorization
Header
Query
curl --request GET \
--url https://api.sandbox.saalal.com/v1/cards \
--header 'Authorization: <authorization>'
{
"data": [
{
"balance": 1000,
"card_brand": "physical",
"card_type": "Visa",
"last_four": "1214",
"reference": "792c6cf2-f5cf-46c8-bf8c-699a9028010e",
"status": "issued"
}
],
"message": "OK",
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 20,
"to": 17,
"total": 17
},
"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/cards \
--header 'Authorization: <authorization>'
{
"data": [
{
"balance": 1000,
"card_brand": "physical",
"card_type": "Visa",
"last_four": "1214",
"reference": "792c6cf2-f5cf-46c8-bf8c-699a9028010e",
"status": "issued"
}
],
"message": "OK",
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"per_page": 20,
"to": 17,
"total": 17
},
"statusCode": 200
}