Retrieve a list of all client locations with optional filtering and pagination
| page | integer >= 1 Default: 1 Page number for pagination |
| per_page | integer [ 1 .. 100 ] Default: 25 Number of items per page |
| sort | string Sort field |
| company_namespace | Array of strings Company namespace for filtering |
| client | string Filter by client ID |
| disabled | boolean Filter by disabled status |
| _id | Array of strings Filter by ID |
{- "success": true,
- "data": [
- {
- "_id": "507f1f77bcf86cd799439011",
- "client": "507f1f77bcf86cd799439012",
- "name": "Main Office",
- "address": "123 Main St",
- "city": "New York",
- "state": "NY",
- "postal_code": "10001",
- "country": "United States",
- "coordinates": {
- "latitude": 40.7128,
- "longitude": -74.006
}, - "is_primary": true,
- "location_type": "office",
- "contact_info": {
- "phone": "+1-555-123-4567",
- "email": "contact@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": false,
- "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
], - "paging": {
- "total": 0,
- "page": 0,
- "per_page": 0,
- "pages": 0
}
}Create a new client location entry
| client required | string Client ID |
| name required | string Location name |
| address required | string Street address |
| city | string City name |
| state | string State or province |
| postal_code | string Postal or ZIP code |
| country | string Country name |
object | |
| is_primary | boolean Default: false Whether this is the primary location |
| location_type | string Default: "office" Enum: "office" "warehouse" "retail" "branch" "other" Type of location |
object | |
object | |
| notes | string Additional notes about the location |
| company_namespace | Array of strings Company namespace |
| disabled | boolean Default: false Whether the location is disabled |
{- "client": "507f1f77bcf86cd799439012",
- "name": "Main Office",
- "address": "123 Main St",
- "city": "New York",
- "state": "NY",
- "postal_code": "10001",
- "country": "United States",
- "coordinates": {
- "latitude": 0,
- "longitude": 0
}, - "is_primary": false,
- "location_type": "office",
- "contact_info": {
- "phone": "string",
- "email": "user@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": false
}{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "client": "507f1f77bcf86cd799439012",
- "name": "Main Office",
- "address": "123 Main St",
- "city": "New York",
- "state": "NY",
- "postal_code": "10001",
- "country": "United States",
- "coordinates": {
- "latitude": 40.7128,
- "longitude": -74.006
}, - "is_primary": true,
- "location_type": "office",
- "contact_info": {
- "phone": "+1-555-123-4567",
- "email": "contact@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": false,
- "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Retrieve a specific client location by its ID
| id required | string Client location ID |
{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "client": "507f1f77bcf86cd799439012",
- "name": "Main Office",
- "address": "123 Main St",
- "city": "New York",
- "state": "NY",
- "postal_code": "10001",
- "country": "United States",
- "coordinates": {
- "latitude": 40.7128,
- "longitude": -74.006
}, - "is_primary": true,
- "location_type": "office",
- "contact_info": {
- "phone": "+1-555-123-4567",
- "email": "contact@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": false,
- "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Update an existing client location
| id required | string Client location ID |
| name | string Location name |
| address | string Street address |
| city | string City name |
| state | string State or province |
| postal_code | string Postal or ZIP code |
| country | string Country name |
object | |
| is_primary | boolean Whether this is the primary location |
| location_type | string Enum: "office" "warehouse" "retail" "branch" "other" Type of location |
object | |
object | |
| notes | string Additional notes about the location |
| company_namespace | Array of strings Company namespace |
| disabled | boolean Whether the location is disabled |
{- "name": "string",
- "address": "string",
- "city": "string",
- "state": "string",
- "postal_code": "string",
- "country": "string",
- "coordinates": {
- "latitude": 0,
- "longitude": 0
}, - "is_primary": true,
- "location_type": "office",
- "contact_info": {
- "phone": "string",
- "email": "user@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": true
}{- "success": true,
- "data": {
- "_id": "507f1f77bcf86cd799439011",
- "client": "507f1f77bcf86cd799439012",
- "name": "Main Office",
- "address": "123 Main St",
- "city": "New York",
- "state": "NY",
- "postal_code": "10001",
- "country": "United States",
- "coordinates": {
- "latitude": 40.7128,
- "longitude": -74.006
}, - "is_primary": true,
- "location_type": "office",
- "contact_info": {
- "phone": "+1-555-123-4567",
- "email": "contact@example.com",
- "fax": "string"
}, - "business_hours": {
- "monday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "tuesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "wednesday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "thursday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "friday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "saturday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}, - "sunday": {
- "open": "09:00",
- "close": "17:00",
- "is_closed": false
}
}, - "notes": "string",
- "company_namespace": [
- "string"
], - "disabled": false,
- "createdAt": "2019-08-24T14:15:22Z",
- "modifiedAt": "2019-08-24T14:15:22Z",
- "SVClient": 0,
- "__v": 0
}
}Delete multiple client locations by their IDs
| ids required | Array of strings Array of client location IDs to delete |
{- "ids": [
- "string"
]
}{- "success": true
}