Skip to content

REST API v2. Authenticate with a Bearer JWT in the Authorization header unless an endpoint is marked public.

Servers​

https://v2-staging.tscheckout.comCurrent host

Get Active Campaign settings​

GET
/api/v2/integrations/active-campaign

Authorizations​

bearerAuth
Type
HTTP (bearer)

Responses​

Active Campaign settings

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization

Samples​


Update Active Campaign settings​

PATCH
/api/v2/integrations/active-campaign

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
"string"

Responses​

Settings updated successfully

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization
Body

Samples​


Search ActiveCampaign lists​

GET
/api/v2/integrations/active-campaign/lists

Returns lists from the ActiveCampaign API (v1 api/activeCampaignInterface/searchLists parity). Uses site integration API URL and API key. Optional name filter matches v1 filters[name] query.

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Query Parameters

search

Filter lists by name (partial match per ActiveCampaign API)

Type
string
Example"newsletter"

Responses​

ActiveCampaign lists

application/json
JSON
{
  
"data": [
  
]
}

Playground​

Authorization
Variables
Key
Value

Samples​


Delete ActiveCampaign API key​

DELETE
/api/v2/integrations/active-campaign/api-key

Remove the stored ActiveCampaign API key (v1 settingsActiveCampaign delete-api-key parity).

Authorizations​

bearerAuth
Type
HTTP (bearer)

Responses​

API key deleted; returns updated settings

application/json
JSON
{
  
"data": "string"
}

Playground​

Authorization

Samples​


Clear ActiveCampaign custom schemas​

DELETE
/api/v2/integrations/active-campaign/custom-schemas

Delete ActiveCampaign custom object schemas (v1 settingsActiveCampaign clear-custom-schemas parity).

Authorizations​

bearerAuth
Type
HTTP (bearer)

Responses​

Custom schemas cleared

application/json
JSON
{
  
"data": {
  
  
"success": true
  
}
}

Playground​

Authorization

Samples​


Powered by VitePress OpenAPI