POST
/
beta
/
cards
/
search
curl --request POST \
  --url https://api.vistaly.com/beta/cards/search \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "filter": {
    "must": [
      {
        "key": "archived",
        "match": {
          "value": true
        }
      }
    ],
    "must_not": [
      {
        "key": "archived",
        "match": {
          "value": true
        }
      }
    ],
    "should": [
      {
        "key": "archived",
        "match": {
          "value": true
        }
      }
    ]
  },
  "query": "<string>"
}'
{
  "message": "Cards searched"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

Metrics submitted successfully

The response is of type object.