Skip to content

Find location and login

Use the following workflow to resolve bundle‑scoped locations and perform credential verification.

GET location

Retrieve a list of all branches (locations) associated with a specific bundle.

Location finder screen

  • Endpoint: /clients?bundle=<bundle>
  • Method: GET
  • Content-Type: application/json

Note

The base URL for this endpoint is app.glofox.com, which differs from the standard staging or production API URLs.

POST Login

End‑user authentication is supported via existing endpoints. The response must be used solely to validate a username/password pair. All API requests require key and token header authentication. The JWT returned by the login endpoint must not be used for any subsequent API calls.

Login

  • Endpoint: /2.0/login
  • Method: POST
  • Content-Type: application/json

Request Body

{
  "branch_id": "string",
  "login": "string",
  "password": "string"
}

Important

This endpoint is for credential validation only and must not be used in client‑facing applications. Note that it may stop returning a JWT soon, and relying on that behavior could break your integration.