Recruspace
  1. Endpoints
Recruspace
  • Welcome
  • Get API Key
  • Authentication
  • Rate Limit
  • Pagination
  • Endpoints
    • Companies Offices
      GET
    • Companies Users
      GET
    • Job Posts
      GET
    • Job Post
      GET
    • Apply Job
      POST
    • Job Questions
      GET
    • Talent Pools
      GET
    • Update Talent Pool
      PATCH
    • Delete Talent Pool
      DELETE
    • Add Candidate To Talent Pool
      POST
    • Talent Pool Candidates
      GET
    • Create Talent Pool
      POST
    • Upload File
      POST
  1. Endpoints

Companies Offices

GET
/api/v1/companies/offices/
Last modified:2025-06-02 14:34:16
Retrieves a list of all offices belonging to the authenticated company.
Returns:
200 OK : Returns an array of office objects, each containing detailed information such as office name, address, city, country, and other relevant fields.

Request

Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************

Responses

🟢200OK
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://api.recruspace.com/api/v1/companies/offices/' \
--header 'Authorization: Bearer <token>'
Response Response Example
[
    {
        "id": 0,
        "name": "string",
        "address": "string",
        "country": "string",
        "city": "string",
        "is_default": true,
        "created_at": "2019-08-24T14:15:22Z",
        "updated_at": "2019-08-24T14:15:22Z",
        "company": "string"
    }
]
Modified at 2025-06-02 14:34:16
Previous
Endpoints
Next
Companies Users
Built with