curl --request PUT \
--url https://api.example.com/api/projects/{projectId}/integrations/{integrationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"config": {
"method": "post",
"url": "<string>",
"timeout": 5000,
"output": "<string>",
"headers": [],
"cookies": [],
"enableInputs": false,
"inputs": []
},
"description": "<string>",
"group": "<string>"
}
'{
"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>"
}Update an existing integration by its ID.
curl --request PUT \
--url https://api.example.com/api/projects/{projectId}/integrations/{integrationId} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"config": {
"method": "post",
"url": "<string>",
"timeout": 5000,
"output": "<string>",
"headers": [],
"cookies": [],
"enableInputs": false,
"inputs": []
},
"description": "<string>",
"group": "<string>"
}
'{
"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>"
}Personal access token is obtained through your profile
Project ID
Integration ID
Updated integration
Updated integration
Unique identifier of the integration
Type of integration
http Integration configuration
Show child attributes
Name of the integration
Unique kind identifier for the integration
Project ID the integration belongs to
Timestamp when the integration was created
Timestamp when the integration was last updated
Description of the integration
Group the integration belongs to
Timestamp when the integration was deleted
Was this page helpful?