Skip to content

List linked sites​

GET
/api/v2/linked-sites

Returns a list of linked sites

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Responses​

Linked site list

application/json
JSON
{
  
"count": 10,
  
"totalCount": 25,
  
"limit": 50,
  
"offset": 25,
  
"data": [
  
]
}

Playground​

Authorization

Samples​


Create linked site​

POST
/api/v2/linked-sites

Create a new linked site

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
"string"

Responses​

Created linked site

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

Playground​

Authorization
Body

Samples​


Get linked site by ID​

GET
/api/v2/linked-sites/{id}

Returns a single linked site by ID

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

Linked Site ID

Type
integer
Required
Format
"int64"

Responses​

Linked site object

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

Playground​

Authorization
Variables
Key
Value

Samples​


Delete linked site​

DELETE
/api/v2/linked-sites/{id}

Delete a linked site

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

Linked Site ID

Type
integer
Required
Format
"int64"

Responses​

Linked site deleted successfully

Playground​

Authorization
Variables
Key
Value

Samples​


Update linked site​

PATCH
/api/v2/linked-sites/{id}

Update an existing linked site

Authorizations​

bearerAuth
Type
HTTP (bearer)

Parameters​

Path Parameters

id*

Linked Site ID

Type
integer
Required
Format
"int64"

Request Body​

application/json
JSON
"string"

Responses​

Updated linked site

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

Playground​

Authorization
Variables
Key
Value
Body

Samples​


Delete multiple linked sites​

POST
/api/v2/linked-sites/bulk-delete

Deletes multiple linked sites

Authorizations​

bearerAuth
Type
HTTP (bearer)

Request Body​

application/json
JSON
{
  
"ids": [
  
  
[
  
  
  
1,
  
  
  
2,
  
  
  
3
  
  
]
  
]
}

Responses​

Linked sites deleted successfully

Playground​

Authorization
Body

Samples​


Powered by VitePress OpenAPI