Locations

Get location information.

Get locations

GET /api/v1/locations

Returns an array with all the locations associated with the organization.

Headers

NameValue

Content-Type

application/json

Authorization

Bearer <token>

Response

{
    "data": [
        {
            "id": "OBG47x1f4pGq",
            "external_id": "LOC_1",
            "name": "Test Location 1",
            "address_line_1": "123 Smith Road",
            "address_line_2": "",
            "address_city": "Atlanta",
            "address_state": "Georgia",
            "address_zip": "12345"
        },
        {
            "id": "uPY8HK8As3Kg",
            "external_id": null,
            "name": "Test Location 2",
            "address_line_1": "456 Apple Road",
            "address_line_2": "",
            "address_city": "Chicago",
            "address_state": "IL",
            "address_zip": "12345"
        },
        ...
    ]
}

Last updated