Agents
Retrieves a collection of agents for a company with a given ID
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
11Successful response
GET /api/v2/agents HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"agents": [
{
"id": "text",
"tenantId": "text",
"name": "text",
"clientSecret": "text",
"status": "ACTIVE",
"alerted": true,
"connected": true,
"version": "text",
"createdDate": "2025-12-06T13:45:43.004Z",
"lastConnectionDate": "2025-12-06T13:45:43.004Z",
"systemConnectionsCount": 1
}
]
}Retrieves an agents for a agent with given ID
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
The ID of the agent.
78781d1f-8cc0-4f42-8e77-c02812f78b5311Successful response
GET /api/v2/agents/{agentId} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"agent": {
"id": "text",
"tenantId": "text",
"name": "text",
"clientSecret": "text",
"status": "ACTIVE",
"alerted": true,
"connected": true,
"version": "text",
"createdDate": "2025-12-06T13:45:43.004Z",
"lastConnectionDate": "2025-12-06T13:45:43.004Z",
"systemConnectionsCount": 1
}
}Creates a new agent
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
The ID of the agent.
78781d1f-8cc0-4f42-8e77-c02812f78b5311Successful response
POST /api/v2/agents/{agentId} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}Successful response
{
"agent": {
"id": "text",
"tenantId": "text",
"name": "text",
"clientSecret": "text",
"status": "ACTIVE",
"alerted": true,
"connected": true,
"version": "text",
"createdDate": "2025-12-06T13:45:43.004Z",
"lastConnectionDate": "2025-12-06T13:45:43.004Z",
"systemConnectionsCount": 1
}
}Removes an agent with a given ID.
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
The ID of the agent.
78781d1f-8cc0-4f42-8e77-c02812f78b5311Successful response
DELETE /api/v2/agents/{agentId} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Accept: */*
Successful response
{
"agent": "78781d1f-8cc0-4f42-8e77-c02812f78b53"
}Updates a new agent with given ID
Authorize the API call with your API token in the Authorization header with the value: Token your-api-token.
If you don't have an API token yet, please refer to the "Authentication" section to learn how to create one.
The ID of the agent.
78781d1f-8cc0-4f42-8e77-c02812f78b5311Successful response
PATCH /api/v2/agents/{agentId} HTTP/1.1
Host: eu1.make.com
Authorization: YOUR_API_KEY
Content-Type: application/json
Accept: */*
Content-Length: 15
{
"name": "text"
}Successful response
{
"agent": {
"id": "text",
"tenantId": "text",
"name": "text",
"clientSecret": "text",
"status": "ACTIVE",
"alerted": true,
"connected": true,
"version": "text",
"createdDate": "2025-12-06T13:45:43.004Z",
"lastConnectionDate": "2025-12-06T13:45:43.004Z",
"systemConnectionsCount": 1
}
}Last updated

