Skip to main content
POST
/
v3
/
profiles
/
validation-rules
/
{profileValidationRule}
/
values
Create Profile Validation Rule Value
curl --request POST \
  --url http://localhost/api/v3/profiles/validation-rules/{profileValidationRule}/values \
  --header 'Content-Type: application/json' \
  --data '
{
  "value": "<string>",
  "is_active": true
}
'
{
  "data": {
    "id": 123,
    "rule_id": 123,
    "value": "<string>",
    "is_active": true,
    "created_at": "<string>",
    "updated_at": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.omneo.io/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

profileValidationRule
integer
required

The profile validation rule ID

Body

application/json
value
string
required
Maximum string length: 255
is_active
boolean | null

Response

ProfileValidationRuleValue

data
ProfileValidationRuleValue · object
required