Recruspace
  1. Endpoints
Recruspace
  • Welcome
  • Get API Key
  • Authentication
  • Rate Limit
  • Pagination
  • Endpoints
    • Get Candidate
      GET
    • Create Candidate
      POST
    • Add Note to Candidate
      POST
    • Add Tag to Candidate
      POST
    • Add Candidate to Job Post or Talent Pool
      POST
    • Search Candidate by Email
      GET
    • List Company Offices
      GET
    • List Company Users
      GET
    • List Job Posts
      GET
    • Get Job Post
      GET
    • Apply to Job Post
      POST
    • List Job Post Questions
      GET
    • List Talent Pools
      GET
    • Update Talent Pool
      PATCH
    • Delete Talent Pool
      DELETE
    • List Talent Pool Candidates
      GET
    • Create Talent Pool
      POST
    • Upload File
      POST
  1. Endpoints

Upload File

POST
/api/v1/client/utilities/upload-file/
Last modified:2025-12-30 13:07:46
Uploads a file to the company's S3 storage.
Arguments
file (required): The file to upload. File size must be less than 50 MB
Valid file types include:
application/pdf
text/plain
application/vnd.openxmlformats-officedocument.wordprocessingml.document
application/msword
image/png
image/jpeg
image/jpg
Returns:
200 OK : Returns the details of the uploaded document, including its name, type, size, and storage path.

Request

Authorization
Bearer Token
Provide your bearer token in the
Authorization
header when making requests to protected resources.
Example:
Authorization: Bearer ********************
or
Body Params multipart/form-dataRequired

Responses

🟢200
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://api.recruspace.com/api/v1/client/utilities/upload-file/' \
--header 'Authorization: Bearer <token>' \
--form 'file=@""'
Response Response Example
{
    "id": 0,
    "path": "string",
    "name": "string",
    "type": "string",
    "file_size": -2147483648,
    "base": "string",
    "presigned_url": "string",
    "uploaded_at": "2019-08-24T14:15:22.123Z"
}
Modified at 2025-12-30 13:07:46
Previous
Create Talent Pool
Built with