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

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": "xxxx@test.com",
  "teams": [
    {
      "id": 1,
      "name": "Team Number 1"
    }
  ]
}
{
    "errors": [
        {
            "message": "E_UNAUTHORIZED_ACCESS: Unauthorized access"
        }
    ]
}

Last updated