Skip to main content
POST
/
h
/
v2
/
contact-lists
Create a contact list
curl --request POST \
  --url https://api.openmic.ai/h/v2/contact-lists \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "Q1 Outreach"
}
'
{
  "id": 123,
  "name": "<string>",
  "contact_count": 123,
  "created_at": "2023-11-07T05:31:56Z",
  "updated_at": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

API key obtained from the OpenMic dashboard.

Body

application/json
name
string
required
Required string length: 1 - 255

Response

Contact list created.

id
integer
required
name
string
required
contact_count
integer
created_at
string<date-time>
updated_at
string<date-time>