WiseWay Help CenterContact
Help CenterAPI & Webhooks

API Overview

WiseWay provides a RESTful API that allows you to integrate the platform with your existing tools and workflows.

Authentication

All API requests must include your API key in the request headers:

x-api-key: your-api-key-here

API keys are created in Settings > API Keys. Each key is shown only once at creation — store it securely.

Base URL

https://app.wiseway.video/api

Key Endpoints

Positions

MethodEndpointDescription
GET/api/app/positionsList all positions
POST/api/app/positionsCreate a new position
GET/api/app/positions/:idGet position details
PUT/api/app/positions/:idUpdate a position
DELETE/api/app/positions/:idDelete a position

Candidates

MethodEndpointDescription
GET/api/app/positions/:id/candidatesList candidates for a position
POST/api/app/positions/:id/candidatesInvite a candidate
DELETE/api/app/positions/:id/candidates/:candidateIdRemove a candidate

Webhooks

MethodEndpointDescription
GET/api/app/webhooksList webhooks
POST/api/app/webhooksCreate a webhook
PUT/api/app/webhooks/:idUpdate a webhook
DELETE/api/app/webhooks/:idDelete a webhook

Webhook Events

Webhooks allow you to receive real-time HTTP POST notifications when events happen in your account.

EventFires When
interview.completedA candidate finishes their interview
interview.startedA candidate begins their interview
candidate.invitedA candidate is added and invited
candidate.createdA candidate is created (without invitation)
position.createdA new position is created
position.updatedA position is modified

Webhook Payload

Each webhook delivery includes:

  • The event type
  • A JSON payload with relevant data (candidate details, position info, timestamps)
  • A signature header for validation

Rate Limits

API requests are rate-limited to protect service quality. If you receive a 429 Too Many Requests response, wait before retrying. Contact support if you need higher limits for bulk operations.

More in API & Webhooks

Validating Webhook Events
© 2026 WiseWay. All rights reserved.