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