Authentication Check
Confirm your API token is working
Last updated
Confirm your API token is working
GET https://api.meldapi.io/api/public/v1/auth/check
This endpoint allows you to check if your API token is working.
Authorization
string
Bearer <API_TOKEN>
{
"id:": 1,
"email": "xxxx@test.com",
"teams": [
{
"id": 1,
"name": "Team Number 1"
}
]
}{
"errors": [
{
"message": "E_UNAUTHORIZED_ACCESS: Unauthorized access"
}
]
}Last updated