GET
/
abdm
/
v1
/
profile
/
scan-and-pay
/
open-order
/
{request_id}
cURL
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"
}

Authorizations

Authorization
string
header
required

The API requires a Bearer token (JWT) for authentication.

Headers

X-User-Id
string

Partner user ID

X-Hip-Id
string

Partner HIP ID

Path Parameters

request_id
string
required

Request ID

Response

200
application/json

OK

The response is of type object.