GlobalLink Web API Troubleshooting

Missing authentication token

Request:

curl --request POST \
--url https://www.onelink-edge.com/xapis/TX/97BB-3CE8-1CD2-FE93 \
--header 'Content-Type: text/plain' \
--data 'Maitake Cellular Support- 120 Vegetarian Capsules'

Response:

{
"message": "No auth provided."
}

Authentication is not configured on the backend

Request:

curl --request POST \
--url https://www.onelink-edge.com/xapis/TX/97BB-3CE8-1CD2-FE93 \
--header 'Content-Type: text/plain' \
--header 'X-TX_Token: API-demo' \
--data 'Maitake Cellular Support- 120 Vegetarian Capsules'

Response:

{
"message": "No auth in config."
}

Authentication provided doesn't match the token in the configuration:

Request:

curl --request POST \
--url https://www.onelink-edge.com/xapis/TX/97BB-3CE8-1CD2-FE93 \
--header 'Content-Type: text/plain' \
--header 'X-TX_Token: 1' \
--data 'Maitake Cellular Support- 120 Vegetarian Capsules'

Response:

{
"message": "ACCESS DENIED."
}
Did this answer your question? Thanks for the feedback There was a problem submitting your feedback. Please try again later.