Get Many Offices
Bad Request
Unauthorized
Forbidden
Internal server error
curl --request GET \ --url 'https://api.alexishr.com/v1/office?select=SOME_ARRAY_VALUE&filters=SOME_OBJECT_VALUE&limit=SOME_INTEGER_VALUE&offset=SOME_INTEGER_VALUE&sort=SOME_OBJECT_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{- "status": "ok",
- "data": [
- {
- "id": "string",
- "companyId": "507f1f77bcf86cd799439011",
- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "12345678",
- "SCB": "12345678",
- "SNI": "12345678"
}
], - "total": 500,
- "count": 50,
- "offset": 50,
- "relations": { }
}Create One Office
Bad Request
Unauthorized
Forbidden
Internal server error
{- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "string",
- "SCB": "string",
- "SNI": "string"
}{- "status": "ok",
- "data": {
- "id": "string",
- "companyId": "507f1f77bcf86cd799439011",
- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "12345678",
- "SCB": "12345678",
- "SNI": "12345678"
}
}Get One Office
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
curl --request GET \ --url 'https://api.alexishr.com/v1/office/507f1f77bcf86cd799439011?select=SOME_ARRAY_VALUE' \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{- "status": "ok",
- "data": {
- "id": "string",
- "companyId": "507f1f77bcf86cd799439011",
- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "12345678",
- "SCB": "12345678",
- "SNI": "12345678"
}, - "relations": { }
}Update One Office
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
{- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "string",
- "SCB": "string",
- "SNI": "string"
}{- "status": "ok",
- "data": {
- "id": "string",
- "companyId": "507f1f77bcf86cd799439011",
- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "12345678",
- "SCB": "12345678",
- "SNI": "12345678"
}
}Replace One Office
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
{- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "string",
- "SCB": "string",
- "SNI": "string"
}{- "status": "ok",
- "data": {
- "id": "string",
- "companyId": "507f1f77bcf86cd799439011",
- "name": "string",
- "phone": "string",
- "email": "string",
- "timezone": "Africa/Abidjan",
- "CFAR": "12345678",
- "SCB": "12345678",
- "SNI": "12345678"
}
}Delete One Office
Bad Request
Unauthorized
Forbidden
Not Found
Internal server error
curl --request DELETE \ --url https://api.alexishr.com/v1/office/507f1f77bcf86cd799439011 \ --header 'Authorization: Bearer REPLACE_BEARER_TOKEN'
{- "status": "ok",
- "data": { }
}