Skip to main content
POST
/
v3
/
evaluator-rules
/
map-input-keys
Get attribute names and input fields
curl --request POST \
  --url https://api.example.com/v3/evaluator-rules/map-input-keys \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "application_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
  "evaluator_id": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'
{
  "api_version": "3.0",
  "kind": "NORMAL",
  "data": {
    "attribute_names": [
      "<string>"
    ],
    "rule_input_keys": {
      "type": "<string>",
      "title": "<string>",
      "description": "<string>",
      "properties": {},
      "required": [
        "<string>"
      ],
      "additional_properties": true
    }
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
application_id
string<uuid>

UUID for the application

evaluator_id
string<uuid>

UUID of the corresponding evaluator

Response

Possible attribute names and keys to map

Response object for standard API responses.

api_version
enum<string>
default:3.0

API version.

Available options:
2.0,
3.0
kind
enum<string>
default:NORMAL

Type of response, indicating a normal response.

Available options:
NORMAL
data
object