curl --request GET \
--url https://api.eka.care/abdm/v1/profile/scan-and-pay/open-order/{request_id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"abha_address": "<string>",
"error": {
"code": 123,
"message": "<string>"
},
"intent": "<string>",
"procedures": [
{
"category": "<string>",
"services": [
{
"amount": 123,
"description": "<string>",
"name": "<string>",
"serviceId": "<string>"
}
]
}
]
},
"request_id": "<string>",
"status": "REQUESTED_OPEN_ORDER"
}
Retrieve open orders by request ID.
curl --request GET \
--url https://api.eka.care/abdm/v1/profile/scan-and-pay/open-order/{request_id} \
--header 'Authorization: Bearer <token>'
{
"data": {
"abha_address": "<string>",
"error": {
"code": 123,
"message": "<string>"
},
"intent": "<string>",
"procedures": [
{
"category": "<string>",
"services": [
{
"amount": 123,
"description": "<string>",
"name": "<string>",
"serviceId": "<string>"
}
]
}
]
},
"request_id": "<string>",
"status": "REQUESTED_OPEN_ORDER"
}
The API requires a Bearer token (JWT) for authentication.
Request ID
OK
The response is of type object
.
Was this page helpful?