Skip to main content
POST
/
directory
/
automation
Search directory automations
curl --request POST \
  --url https://api.wirespeed.co/directory/automation \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "size": 123,
  "page": 123,
  "filter": "<string>",
  "search": "<string>",
  "orderBy": "<string>",
  "orderDir": "asc"
}'
{
  "totalCount": 123,
  "data": [
    {
      "id": "<string>",
      "teamId": "<string>",
      "searchField": "email",
      "search": "<string>",
      "enabled": true,
      "tag": "VIP"
    }
  ]
}

Authorizations

Authorization
string
header
required

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

Body

application/json
size
number
page
number
filter
string
orderBy
string
orderDir
enum<string>
Available options:
asc,
desc

Response

totalCount
number
required

Total count of directory automations

data
object[]
required

Array of directory automations

I