{ "opencollection": "1.0.0", "info": { "name": "Brevo Agent Status Contacts API", "version": "3.0" }, "request": { "auth": { "type": "apikey", "key": "api-key", "value": "{{api-key}}", "placement": "header" } }, "items": [ { "info": { "name": "Contacts", "type": "folder" }, "items": [ { "info": { "name": "Get all contacts", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/contacts", "params": [ { "name": "limit", "value": "", "type": "query", "description": "Maximum number of results to return per request." }, { "name": "offset", "value": "", "type": "query", "description": "Number of results to skip for pagination." }, { "name": "modifiedSince", "value": "", "type": "query", "description": "Filter contacts modified since this date-time in ISO 8601 format." }, { "name": "sort", "value": "", "type": "query", "description": "Sort direction for the results." } ] }, "docs": "Retrieves a paginated list of contacts from the account. Supports filtering by modification date and sorting. The response includes contact attributes and list memberships." }, { "info": { "name": "Create a contact", "type": "http" }, "http": { "method": "POST", "url": "https://api.brevo.com/v3/contacts", "body": { "type": "json", "data": "{}" } }, "docs": "Creates a new contact with the specified email address and optional attributes. The contact can be immediately added to one or more lists. Duplicate email addresses will result in an update of the existing contact if updateEnabled is set." }, { "info": { "name": "Get a contact's details", "type": "http" }, "http": { "method": "GET", "url": "https://api.brevo.com/v3/contacts/:identifier", "params": [ { "name": "identifier", "value": "", "type": "path", "description": "Contact identifier which can be an email address, phone number, or internal contact ID." }, { "name": "startDate", "value": "", "type": "query", "description": "Start date for retrieving contact statistics." }, { "name": "endDate", "value": "", "type": "query", "description": "End date for retrieving contact statistics." } ] }, "docs": "Retrieves detailed information about a specific contact including all attributes, list memberships, and email campaign statistics. The contact can be identified by email address, phone number, or internal ID." }, { "info": { "name": "Update a contact", "type": "http" }, "http": { "method": "PUT", "url": "https://api.brevo.com/v3/contacts/:identifier", "params": [ { "name": "identifier", "value": "", "type": "path", "description": "Contact identifier which can be an email address, phone number, or internal contact ID." } ], "body": { "type": "json", "data": "{}" } }, "docs": "Updates an existing contact's attributes and list memberships. The contact is identified by email address, phone number, or internal ID." }, { "info": { "name": "Delete a contact", "type": "http" }, "http": { "method": "DELETE", "url": "https://api.brevo.com/v3/contacts/:identifier", "params": [ { "name": "identifier", "value": "", "type": "path", "description": "Contact identifier which can be an email address, phone number, or internal contact ID." } ] }, "docs": "Permanently deletes a contact from the account. The contact is identified by email address, phone number, or internal ID." } ] } ], "bundled": true }