API Reference
Consensus
Schema
Platform
- Evals
- Processors
- POSTCreate
- DELDelete
- GETGet
- GETList
- PUTUpdate
- POSTSubmit
- Automations
- Tests
- Link
- Mailbox
- Endpoints
- Outlook
- Logs
- POST
- Secrets
Endpoints
Get
Get an endpoint by ID
GET
/
v1
/
processors
/
automations
/
endpoints
/
{endpoint_id}
Copy
endpoint = reclient.processors.automations.endpoints.get(
endpoint_id="endp_jKH0WW6X1dD3wtWbnuuXQ",
)
Copy
{
"id": "endp_jKH0WW6X1dD3wtWbnuuXQ",
"name": "Endpoint Automation 2",
"processor_id": "proc_o4dtLxizT0kDAjeKuyVLA",
"updated_at": "2025-06-26T16:29:04.953000",
"default_language": "en",
"webhook_url": "https://your-server.com/webhook",
"webhook_headers": {},
"need_validation": false,
"object": "automation.endpoint"
}
Copy
endpoint = reclient.processors.automations.endpoints.get(
endpoint_id="endp_jKH0WW6X1dD3wtWbnuuXQ",
)
Copy
{
"id": "endp_jKH0WW6X1dD3wtWbnuuXQ",
"name": "Endpoint Automation 2",
"processor_id": "proc_o4dtLxizT0kDAjeKuyVLA",
"updated_at": "2025-06-26T16:29:04.953000",
"default_language": "en",
"webhook_url": "https://your-server.com/webhook",
"webhook_headers": {},
"need_validation": false,
"object": "automation.endpoint"
}
Authorizations
Path Parameters
Response
200
application/json
Successful Response
The response is of type object
.
Copy
endpoint = reclient.processors.automations.endpoints.get(
endpoint_id="endp_jKH0WW6X1dD3wtWbnuuXQ",
)
Copy
{
"id": "endp_jKH0WW6X1dD3wtWbnuuXQ",
"name": "Endpoint Automation 2",
"processor_id": "proc_o4dtLxizT0kDAjeKuyVLA",
"updated_at": "2025-06-26T16:29:04.953000",
"default_language": "en",
"webhook_url": "https://your-server.com/webhook",
"webhook_headers": {},
"need_validation": false,
"object": "automation.endpoint"
}
Assistant
Responses are generated using AI and may contain mistakes.