- Get started
- Workspace
- Task Manager
- Project
- Board
- BoardColumn
- Task
- Custom Fields
- CRM
- Funnels
- Funnel Statuses
- Deals
- Organizations
- Addresses
- Emails
- Phones
- Contacts
- Tags
- Get all organizationsGET
- Create an organizationPOST
- Get an organizationGET
- Update an organizationPUT
- Delete an organizationDELETE
- Contacts
- Currencies
- User
- Attachments
Create an email
POST
https://api.weeek.net/public/v1/crm/organizations/{organizationId}/emails
Request
Authorization
Provide your bearer token in the
Authorization
header when making requests to protected resources.Example:
Authorization: Bearer ********************
Path Params
organizationId
string
required
Body Params application/json
email
string <email>
required
<= 255 characters
Example
{
"email": "user@example.com"
}
Responses
🟢200Success
application/json
Body
success
boolean
optional
Default:
true
email
object (OrganizationEmail)
required
id
string <uuid>
optional
email
string <email>
optional
<= 255 characters
Example
{
"success": "true",
"email": {
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"email": "user@example.com"
}
}
Modified at 2024-01-29 12:05:12