AccuroFit
  1. Open APIs
AccuroFit
  • Open APIs
    • Get Clients
      GET
    • Get Client Location List
      GET
    • Get Client Member List
      GET
    • Get AccuroPT Session History
      GET
    • Get Classes
      GET
  • Schemas
    • Sample Schemas
      • Location
      • Clients
      • Locations
      • Member
      • Members
      • Session
      • Sessions
      • Client
      • Category
  1. Open APIs

Get Client Location List

GET
/open/clients/{clientId}/locations

Request

Authorization
Add parameter in header
X-AUTHORIZATION
Example:
X-AUTHORIZATION: ********************
Path Params

Header Params

Request Code Samples

Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://staging.accuropt.com/open/clients//locations' \
--header 'X-AUTHORIZATION: <api-key>'

Responses

🟢200OK
application/json
Body

Example
{
    "meta": {
        "error": false,
        "code": 99,
        "message": "Excepteur ipsum aute eiusmod"
    },
    "data": [
        {
            "locationId": 1868434623193237,
            "locationName": "doggie",
            "locationAddress": "Suite 729"
        },
        {
            "locationId": 3414611079711141,
            "locationName": "doggie2",
            "locationAddress": "Apt. 816"
        },
        {
            "locationId": 8636486418730222,
            "locationName": "doggie3",
            "locationAddress": "Apt. 597"
        }
    ]
}
🟠404Record not found
🟠400Invalid input
Previous
Get Clients
Next
Get Client Member List
Built with