MENU navbar-image

Introduction

Documentation for NCVSI Partner Integration APIs.

This documentation aims to provide all the information you need to work with our API.

<aside>As you scroll, you'll see code examples for working with the API in different programming languages in the dark area to the right (or as part of the content on mobile).
You can switch the language used with the tabs at the top right (or from the nav menu at the top left on mobile).</aside>

Authenticating requests

To authenticate requests, include a X-Partner-Key header with the value "{YOUR_AUTH_KEY}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

You can retrieve your token by visiting your dashboard and clicking Generate API token.

Endpoints

POST api/v1/partner/v1/candidates/resolve-or-create

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/v1/partner/v1/candidates/resolve-or-create" \
    --header "X-Partner-Key: {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/v1/partner/v1/candidates/resolve-or-create"
);

const headers = {
    "X-Partner-Key": "{YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/partner/v1/candidates/resolve-or-create

Headers

X-Partner-Key        

Example: {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/partner/v1/transcript-requests

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/v1/partner/v1/transcript-requests" \
    --header "X-Partner-Key: {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/v1/partner/v1/transcript-requests"
);

const headers = {
    "X-Partner-Key": "{YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/partner/v1/transcript-requests

Headers

X-Partner-Key        

Example: {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

POST api/v1/partner/v1/payment-sessions

requires authentication

Example request:
curl --request POST \
    "http://localhost:8000/api/v1/partner/v1/payment-sessions" \
    --header "X-Partner-Key: {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "http://localhost:8000/api/v1/partner/v1/payment-sessions"
);

const headers = {
    "X-Partner-Key": "{YOUR_AUTH_KEY}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/v1/partner/v1/payment-sessions

Headers

X-Partner-Key        

Example: {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json