🌐
Recrubo API
  • Getting Started
    • Introduction
    • Sandbox
    • Async requests
    • Authentication
    • Webhooks
    • Filtering, sorting, pagination and including resources
  • Guides
    • Setting up webhooks
    • Generating flows
    • Editing flows
    • Triggering flows
    • Embedding the Inbox
    • Sending messages
  • Resources
    • API Resource Reference
      • Candidate
      • Conversation
      • Flow
      • FlowRun
      • FlowGeneration
      • Message
      • MessageTemplate
      • MessageThread
      • NodeAction
      • NodeTransition
      • Node
      • VacancyAnalysis
      • Vacancy
      • User
      • WebhookPayload
    • Embeddables
      • Inbox
      • BotStudio
      • GenerateFlow
      • Whatsapp connect button
      • Schedule Form
      • Schedule Table
    • Flow types
      • vacancy_application_flow
  • Management
    • Organizations
Powered by GitBook
On this page
  • Obtaining an API key
  • Authenticating requests
  1. Getting Started

Authentication

To query our API you need an API key.

Obtaining an API key

Currently, API keys can only be obtained by asking for one at your direct contact at Recrubo.

Not sure who to contact? Send a message to info@recrubo.com

Authenticating requests

To authenticate requests, you need to include your API key in the Authorization header of your request.

The value of the Authorization header should be:

Bearer <API_KEY>

For example, if your API key is xx-xx-xx-xx-xx.

The Authorization header should be: Bearer xx-xx-xx-xx-xx.

Example

curl -X GET "https://api.recrubo.app/public/v2/flow-runs" \
    -H "Authorization: Bearer xx-xx-xx-xx-xx" \
    -H "Content-Type: application/vnd.api+json"
PreviousAsync requestsNextWebhooks

Last updated 1 year ago