You are on page 1of 5

Health Claim Exchange - Participant APIs

Guidelines
1 . Api Url- https://sbxhcx.abdm.gov.in/participanthcxservice/participant/create

Required Headers-

Request Body-
{
"linked_registry_codes": [
"10001"
],
"registryid" : "10003",
"participant_name": "TestName",
"scheme_code": "PMJAY",
"roles": ["10001"],

"primaryEmail": "test@gmail.com",

"phone": [
"08040004000"
],
"primaryMobile": "9899912323",
"signing_cert_path": "string",
"encryption_cert": "string",
"endpoint_url": "http://100.65.198.28/bridgepayer"
}

Valid Role Enums : -


PROVIDER("10001")
PAYER("10002")

AGENCY_TPA("10003")

AGENCY_REGULATOR("10004")

RESEARCH("10005")

MEMBER_ISNP("10006")

AGENCY_SPONSOR("10007")

HIE_HIO_HCX("10008")

Valid Registry Enums


HFR ("10001")

NIN ("10002")

ROHINI(" 10003")

PAYER ("10004")

Response Body-
{
"participant_code": "1000000006@sbx"
}

------------------------------------------------------------------------------------------------------------------------------------------

2 . Api Url- https://sbxhcx.abdm.gov.in/participanthcxservice/participant/update

Required Headers-
Request Body-
{
"participant_code": "1000000006@sbx",
"participant_name": "TestNameChanged",
"scheme_code": "PMJAY",
"roles": [
"10001"
],
"primaryEmail": "string",
"phone": [
"08040004000"
],
"primaryMobile": "9899912323",
"signing_cert_path": "string",
"encryption_cert": "string",
"endpoint_url": "string"
}

Valid Role Enums : -


PROVIDER("10001")

PAYER("10002")

AGENCY_TPA("10003")

AGENCY_REGULATOR("10004")

RESEARCH("10005")

MEMBER_ISNP("10006")

AGENCY_SPONSOR("10007")

HIE_HIO_HCX("10008")
Valid Registry Enums
HFR ("10001")

NIN ("10002")

ROHINI(" 10003")

PAYER ("10004")

Response Body-
In Response, Api will provide response code as 200 for successful update of
participant details

------------------------------------------------------------------------------------------------------------------------------------------

3 . Api Url- https://sbxhcx.abdm.gov.in/participanthcxservice/fetch/participants/list

Required Headers-

Request Body-
{
"role": "10001",
"fromdate": "10/05/2023",
"todate": "20/05/2023"
}

Valid Role Enums : -


PROVIDER("10001")

PAYER("10002")

AGENCY_TPA("10003")
AGENCY_REGULATOR("10004")

RESEARCH("10005")

MEMBER_ISNP("10006")

AGENCY_SPONSOR("10007")

HIE_HIO_HCX("10008")

Valid Registry Enums


HFR ("10001")

NIN ("10002")

ROHINI(" 10003")

PAYER ("10004")

Response Body-
{
"participantdetails": [
{
"participantcode": "1000000012@sbx",
"participantname": "Test Hostpital 1"
},
{
"participantcode": "1000000013@sbx",
"participantname": "Test Hostpital2"
}
]
}

You might also like