Cards
Get Card Access Token
POST
/
cards
/
auth
/
access_token
Authorization
Body
curl --request POST \
--url https://api.sandbox.saalal.com/v1/cards/auth/access_token \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"reference": "ed7e61b6-94c9-4716-adc9-74a19db8a8e"
}'
{
"data": {
"access_token": "N72VeyZQ8dmn3a0Wk0blu2a1pjFjdcNOx2Ec5bm39pFGa33gGu"
},
"message": "Access Token generated successfully",
"statusCode": 200
}
Authorizations
Authorization
string
headerrequiredBearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
css_url
string
reference
string
Response
200 - application/json
data
object
message
string
statusCode
integer
curl --request POST \
--url https://api.sandbox.saalal.com/v1/cards/auth/access_token \
--header 'Authorization: <authorization>' \
--header 'Content-Type: application/json' \
--data '{
"reference": "ed7e61b6-94c9-4716-adc9-74a19db8a8e"
}'
{
"data": {
"access_token": "N72VeyZQ8dmn3a0Wk0blu2a1pjFjdcNOx2Ec5bm39pFGa33gGu"
},
"message": "Access Token generated successfully",
"statusCode": 200
}