API Reference
Server API
Client API
- Overview
- GETGet Authenticators
- GETGet Authenticator Configurations
- SMS
- Email OTP
- Email magic link
- Authenticator app
- Passkey
- Push
- iProov (Face Biometrics)
Management API
- Overview
- GETGet Tenant
- Action Configurations
- Rules
- Custom Lists
- Custom Data Points
- Theme
Call Connect API
- Caller Authentication
Terminal API
- Payment Session
Custom Lists
Create Custom List
Custom Lists
Create Custom List
Creates a custom list of values.
POST
/
value-lists
curl --request POST \
--url https://api.authsignal.com/v1/management/value-lists \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"itemType": "string",
"isActive": true,
"valueListItems": [
"<string>"
]
}'
{
"name": "<string>",
"alias": "<string>",
"itemType": "string",
"isActive": true,
"valueListItems": [
"<string>"
]
}
Body
application/json
Response
200
application/json
OK
The response is of type object
.
Was this page helpful?
curl --request POST \
--url https://api.authsignal.com/v1/management/value-lists \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"itemType": "string",
"isActive": true,
"valueListItems": [
"<string>"
]
}'
{
"name": "<string>",
"alias": "<string>",
"itemType": "string",
"isActive": true,
"valueListItems": [
"<string>"
]
}