Piloty API
  • Introduction
  • 🔓Authentication
  • 🔭Scopes and Roles
  • ⏲️Rate limits
  • 📂Pagination
  • ⁉️Errors and Status
  • 🏢COMPANIES API
    • Companies
      • GET : Companies by media
      • GET : Retrieve Company
      • POST : Create company
      • PATCH : Update company
    • Company 's fields
      • GET : List Sectors
      • GET : List Sizes
  • 💼JOBS API
    • Jobs
      • GET : Jobs by media
      • GET : Retrieve job
      • GET : Jobs opened by media
      • GET : Retrieve job opened
      • POST : Create job
      • PATCH : Update job
    • Job's fields
      • GET : List Contracts
      • GET : List Experiences
      • GET : List Educations
      • GET : List Remote policies
      • GET : List Worktimes
      • GET : List Job Categories
  • 👤USERS API
    • Users
      • GET : Users by media
  • 🧑‍💼CANDIDATES API
    • Candidates
      • GET : User candidates by media
      • GET : Job alerts
      • GET : Favoris
    • Opportunities
      • POST : Job applications - v2
      • GET : Job applications
      • 🛑Deprecated - POST : Job applications - v1
  • 📕Changelog
Powered by GitBook
On this page

Authentication

Piloty Solutions uses OAuth tokens to allow access to the API. We expect the OAuth token to be included in all API requests:

  • 1/ in a header that looks like the following: Authorization: Bearer PILOTY_TOKEN

  • 2/ Or, through query string: ?access-token=PILOTY_TOKEN

You must replace PILOTY_TOKEN with your personal API token.

curl "PILOTY_API_ENDPOINT_HERE"
   -d "access-token=PILOTY_TOKEN" 
   -H "Authorization: Bearer PILOTY_TOKEN"
  
PreviousIntroductionNextScopes and Roles

Last updated 3 months ago

🔓