Skip to main content
POST
/
value-lists
Create Value List
curl --request POST \
  --url https://api.authsignal.com/v1/management/value-lists \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "itemType": "string",
  "isActive": true,
  "valueListItems": [
    "<string>"
  ]
}
'
{
  "name": "<string>",
  "alias": "<string>",
  "itemType": "string",
  "isActive": true,
  "valueListItems": [
    "<string>"
  ]
}

Documentation Index

Fetch the complete documentation index at: https://docs.authsignal.com/llms.txt

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

Authorizations

Authorization
string
header
required

Use your Authsignal Management API secret key as the username and leave the password empty. This key is different from the Server API key and can be found in the API Keys section of the Authsignal Portal settings page.

Body

application/json
name
string
required
itemType
enum<string>
required
Available options:
string,
number
isActive
boolean
required
valueListItems
(string | number)[]

Response

OK

name
string
alias
string
itemType
enum<string>
Available options:
string,
number
isActive
boolean
valueListItems
(string | number)[]