curl --request GET \
--url https://api.example.com/api/projects/{projectId}/integrations \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "http",
"config": {
"method": "post",
"url": "<string>",
"timeout": 5000,
"headers": [],
"cookies": [],
"enableInputs": false,
"inputs": [],
"output": "<string>"
},
"name": "<string>",
"kind": "<string>",
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"updatedAt": "<string>",
"description": "<string>",
"group": "<string>",
"deletedAt": "<string>"
}
],
"paginate": {
"current": 123,
"from": 123,
"to": 123,
"total": 123,
"pageSize": 123
}
}Retrieve a paginated list of integrations for the specified project.
curl --request GET \
--url https://api.example.com/api/projects/{projectId}/integrations \
--header 'Authorization: Bearer <token>'{
"results": [
{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"type": "http",
"config": {
"method": "post",
"url": "<string>",
"timeout": 5000,
"headers": [],
"cookies": [],
"enableInputs": false,
"inputs": [],
"output": "<string>"
},
"name": "<string>",
"kind": "<string>",
"projectId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"createdAt": "<string>",
"updatedAt": "<string>",
"description": "<string>",
"group": "<string>",
"deletedAt": "<string>"
}
],
"paginate": {
"current": 123,
"from": 123,
"to": 123,
"total": 123,
"pageSize": 123
}
}Personal access token is obtained through your profile
Project ID
Search term to filter integrations by name
Current page
Number of items per page
Was this page helpful?