Sale point

Begin session

POST https://api.vendex.app/api_merchant/sale_point/begin_session/

Headers

Name
Type
Description

Api-Client-Token

string

Client token obtained from client authentication method.

Api-Sale-Point-Token

string

Sale point token can be obtained from sale point authentication method

{
    "status": "success",
    "detail": "Begin session successfull"
}

Example post data

{
    "account_number": "1234567812345678",
    "status": "accepted", // accepted or rejected
    "support_remote_selection": true
}

End session

GET https://api.vendex.app/api_merchant/sale_point/end_session/

To notify that session is complete.

Headers

Name
Type
Description

Api-Client-Token

string

Client token obtained from client authentication method

Api-Sale-Point-Token

string

Sale point token can be obtained from sale point authentication method

{
    "status": "success",
    "detail": "End session success"
}

Last updated

Was this helpful?