Mailbox
Create
Create a new mailbox
POST
/
v1
/
processors
/
automations
/
mailboxes
Copy
curl --request POST \
--url https://api.uiform.com/v1/processors/automations/mailboxes \
--header 'Content-Type: application/json' \
--data '{
"object": "automation.mailbox",
"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,
"email": "<string>",
"authorized_domains": [
"<string>"
],
"authorized_emails": [
"jsmith@example.com"
]
}'
Copy
{
"object": "automation.mailbox",
"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,
"email": "<string>",
"authorized_domains": [
"<string>"
],
"authorized_emails": [
"jsmith@example.com"
]
}
Authorizations
Body
application/json
Response
200
application/json
Successful Response
The response is of type object
.
Copy
curl --request POST \
--url https://api.uiform.com/v1/processors/automations/mailboxes \
--header 'Content-Type: application/json' \
--data '{
"object": "automation.mailbox",
"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,
"email": "<string>",
"authorized_domains": [
"<string>"
],
"authorized_emails": [
"jsmith@example.com"
]
}'
Copy
{
"object": "automation.mailbox",
"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,
"email": "<string>",
"authorized_domains": [
"<string>"
],
"authorized_emails": [
"jsmith@example.com"
]
}
Assistant
Responses are generated using AI and may contain mistakes.