Get Account Status
POST
https://apisnap-stg.netzme.com/api/v1.0/account/registration-account-inquiry
Query Parameters
partnerReferenceNo
String
API request identifier from the user's system, unique for each request
additionalInfo
Object
custId
String
User ID/merchant ID
{
"partnerReferenceNo": "2020102900000000000001",
"additionalInfo": {
"custId": "Mw6STUQK"
}
}
responseCode
String
(HTTP status code + service code + case code)
responseMessage
String
Description of responseCode
partnerReferenceNo
String
API request identifier from the user's system
referenceNo
String
Transaction identifier on service provider system. Must be filled upon successful transaction
additionalInfo
Object
userStatus
String
Account status
userType
String
Account type
status
String
Status request
benefits
Array Object
Account benefits description
Response Body
{
"responseCode": "2000800",
"responseMessage": "Successful",
"partnerReferenceNo": "2020102900000000000001",
"referenceNo": "408ef049-9bc5-4d75-95b7-37034920e805",
"additionalInfo": {
"userStatus": "premium",
"userType": "regular",
"status": "approved_v2",
"benefits": [
"Request approved"
]
}
}
Content-Type
application/json
CHANNEL-ID
e.g 95221
X-EXTERNAL-ID
e.g 41807553358950093184162180797837
X-PARTNER-ID
Client id e.g NetmeClientId
X-SIGNATURE
Service’s signature (given at transactional signature)
X-TIMESTAMP
Client's current local time in yyyy-MM-ddTHH:mm:ssTZD
Authorization
Client`s access for protected resources (given at Authentication)
X-CLIENT-SECRET
Client Secret (given at Credential & Signature)
curl --location --request POST 'https://apisnap-stg.netzme.com/api/v1.0/account/registration-account-inquiry' \
--header 'X-TIMESTAMP: 2022-08-10T00:00:00+07:00' \
--header 'X-CLIENT-SECRET: b9b32c9f42514e9aa1562c09826d8b32' \
--header 'X-PARTNER-ID: NetmeClientId' \
--header 'X-SIGNATURE: c96fe841b190f2cfc33d3ef94fb7ec9f850074ae4e4d874c26c1968e4135b9362ada96d5069346bd561d5d406936abf7b427a3fc7c792af25d680e88535affcd' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJhbGciOiJIUzUxMiIsInR5cCI6IkpXVCJ9.eyJleHAiOjE2NjkyOTYxODMsImlhdCI6MTY2OTI0MjE4MywiaXNzIjoiYnNuYXAiLCJyb2wiOiJjaGVjayJ9.fZmRdXjbj3OhHc-kor8Hs7op1FDnnMgnTPEa6mh2jT57FamUg1g0-DmJhh-2usjCOoJ08fh8ybQEDj55KiCgrw' \
--header 'X-EXTERNAL-ID: 41807553358950093184162180797837' \
--header 'CHANNEL-ID: 95521' \
--data-raw '{
"partnerReferenceNo": "2020102900000000000001",
"additionalInfo": {
"custId": "Mw6STUQK"
}
}'
Last updated