HTTP Methods & Status Codes

Response Codes

This section will describe the circumstances when you would return each possible HTTP status code that our endpoints typically respond with.

The examples below only briefly specify which types of URI paths and parameters are required to generate the responses described here.

Please see the Routing and Parameters sections for specific details on the structure of URI paths and query parameters.

This section contains the API standards and guidelines when implementing a GET route

GET /api/v2

The available response codes for a GET are listed below the header "Responses" Expand the response code to see the guidelines and standards.

Query Parameters

NameTypeDescription

*

String

Query parameters

Headers

NameTypeDescription

Authorization*

String

Bearer token

The request was successful.

This section contains the API standards and guidelines when implementing a POST route

POST /api/v2

The available response codes for a POST are listed below the header "Responses" Expand the response code to see the guidelines and standards.

Headers

NameTypeDescription

Authorization*

String

Bearer token

Request Body

NameTypeDescription

*

String

Request parameters

{...}

String

JSON request body

The request was successful.

This section contains the API standards and guidelines when implementing a PUT route

PUT /api/v2

The available response codes for a PUT are listed below the header "Responses" Expand the response code to see the guidelines and standards.

Headers

NameTypeDescription

Authorization*

String

Bearer token

Request Body

NameTypeDescription

*

String

Request parameters

{...}

String

JSON request body

The request was successful.

This section contains the API standards and guidelines when implementing a PATCH route

PATCH /api/v2

The available response codes for a PATCH are listed below the header "Responses" Expand the response code to see the guidelines and standards.

Headers

NameTypeDescription

Authorization*

String

Bearer token

Request Body

NameTypeDescription

*

String

Request parameters

{...}

String

JSON request body

The request was successful.

This section contains the API standards and guidelines when implementing a DELETE route

DELETE /api/v2

The available response codes for a DELETE are listed below the header "Responses" Expand the response code to see the guidelines and standards.

Query Parameters

NameTypeDescription

*

String

Query parameters

Headers

NameTypeDescription

Authorization*

String

Bearer token

The request was successful.

Last updated