curl --request GET \
--url https://revive-api-v2-production.herokuapp.com/v1/rma/{rmaId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "requested",
"amount_requested": 123,
"is_final": true,
"draw": 123,
"released_at": "<string>",
"name": "<string>"
}
'curl --request GET \
--url https://revive-api-v2-production.herokuapp.com/v1/rma/{rmaId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"status": "requested",
"amount_requested": 123,
"is_final": true,
"draw": 123,
"released_at": "<string>",
"name": "<string>"
}
'Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Success
Was this page helpful?