For the complete documentation index, see llms.txt. This page is also available as Markdown.

Token

Authentication SECRET KEY is the major step you can start before you make any request, without SECRET KEY you can't make any request. Please don't share SECRET KEY with anyone.

Login via api and get SECRET KEY

POST https://borderlesspaymentng.com/api/token

Headers

Name
Type
Description

content-type*

String

application/json

Request Body

Name
Type
Description

password*

String

password

username*

String

email

{
    "type":"bearer",
    "token":"YOUR_SECRET_KEY",
    "mesage":"success",
    "status":"success"
}
{
    "status":"failed",
    "message":"Bad Request"
}
{
    "status":"failed",
    "message":"Incorrect username or password"
}

Last updated