Endpoints
Update
Update an endpoint
PUT
/
v1
/
processors
/
automations
/
endpoints
/
{endpoint_id}
Copy
curl --request PUT \
--url https://api.uiform.com/v1/processors/automations/endpoints/{endpoint_id} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"processor_id": "<string>",
"default_language": "<string>",
"webhook_url": "<string>",
"webhook_headers": {},
"need_validation": true
}'
Copy
{
"object": "automation.endpoint",
"id": "<string>",
"name": "<string>",
"processor_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"default_language": "en",
"webhook_url": "<string>",
"webhook_headers": {},
"need_validation": false
}
Authorizations
Query Parameters
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Copy
curl --request PUT \
--url https://api.uiform.com/v1/processors/automations/endpoints/{endpoint_id} \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"processor_id": "<string>",
"default_language": "<string>",
"webhook_url": "<string>",
"webhook_headers": {},
"need_validation": true
}'
Copy
{
"object": "automation.endpoint",
"id": "<string>",
"name": "<string>",
"processor_id": "<string>",
"updated_at": "2023-11-07T05:31:56Z",
"default_language": "en",
"webhook_url": "<string>",
"webhook_headers": {},
"need_validation": false
}
Assistant
Responses are generated using AI and may contain mistakes.