POST
/
v1
/
list.create-list
curl --request POST \
  --url https://api.mobilizehub.com/v1/list.create-list \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "organizationId": "<string>",
  "name": "<string>"
}'
{
  "data": {
    "listId": "<string>"
  },
  "object": "list"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

List object

The body is of type object.

Response

200
application/json

Create a list

The response is of type object.