POST
/
delphi
/
filter-fields
curl --request POST \
  --url https://app.delphihq.com/api/delphi/filter-fields \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --header 'X-CLIENT-ID: <api-key>' \
  --data '{
  "question": "<string>"
}'
{
  "status": "ok",
  "result": {
    "type": "<string>",
    "answer": {
      "fields": [
        {
          "name": "<string>",
          "title": "<string>",
          "description": "<string>",
          "type": "<string>"
        }
      ]
    }
  }
}

Authorizations

X-API-KEY
string
header
required
X-CLIENT-ID
string
header
required

Body

application/json
question
string

Response

200 - application/json
Filter fields
status
enum<string>
Available options:
ok
result
object