This endpoint would allow you to check if a payme nick is available via Pandascrow API.

[POST] {{baseurl}}/sandbox/index/transaction/payme/check

Check Nick

To check if nick is available, you'll need to pass in the required keys and values in the table below. This variable is necessary as it would help check the database of nicks for availability status.

ParamRequired?Descriptiontype
nickYesProvide the payme nick value you would like to check for.String

API Object

{
    "status": 200,
    "data": {
        "message": "Payme Nick Available βœ…",
        "nick": "professor"
    }
}
curl -L -X POST '{{baseurl}}/sandbox/index/transaction/payme/check' \
-H 'Content-Type: application/json' \
-H 'Authorization: SECRET_KEY' \
-H 'Appid: appid'
Language
Authentication
Basic
base64
:
Click Try It! to start a request and see the response here!