Skip to main content

Emails

EntityActivityActivity.Email

Emails represent email communications tracked in your CRM. They are linked to relationships and contacts to maintain a record of correspondence.

Use the Activity_Email endpoint to manage email records. Emails inherit all fields from Activity.

Endpoints

List Emails

GET/v1/odata/Activity_Email

Single Email

GET/v1/odata/Activity_Email({id})

Create Email

POST/v1/odata/Activity_Email

Update Email

PUT/v1/odata/Activity_Email({id})

Delete Email

DELETE/v1/odata/Activity_Email({id})

Fields

Inherited Fields (from Activity)

See Activity Fields for all inherited fields.

Relationships

RelationshipTarget EntityCardinalityDescription
RelationshipRelationshipN:1Linked relation
ContactRelation.Person.ContactN:1Contact person
LinkedActivitiesActivity1:NLinked activities

Expanding Relationships

GET/v1/odata/Activity_Email({id})?$expand=Relationship
GET/v1/odata/Activity_Email({id})/Relationship

Filtering Examples

GET/v1/odata/Activity_Email?$filter=contains(Subject, '{Subject}')&$top={top}
GET/v1/odata/Activity_Email?$filter=CreationDate gt {CreationDate}&$top={top}

Custom Query

Build your own OData query against Activity_Email. Open Run and edit the whole request inline — swap the entity set, change the $filter, or add $expand, $select, $orderby, $top, $skip. Type $ for suggestions; use ↺ Reset to restore this example.

GET/v1/odata/Activity_Email?$top=10