API reference
Server API
- Overview
- POSTTrack Action
- GETGet Action
- GETQuery Actions
- PATCHUpdate Action
- GETGet User
- PATCHUpdate User
- DELDelete User
- POSTEnroll Verified Authenticator
- GETGet Authenticators
- DELDelete Authenticator
- POSTInitiate SMS Challenge
- POSTInitiate Email Challenge
- POSTVerify SMS Challenge
- POSTVerify Email Challenge
- POSTClaim Challenge
- POSTValidate Challenge
- GETGet Authenticator Configurations
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 Data Points
Create Custom Data Point
Creates a custom data point.
POST
/
custom-data-points
curl --request POST \
--url https://api.authsignal.com/v1/management/custom-data-points \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"dataType": "text",
"modelType": "user",
"description": "<string>"
}'
{
"id": "<string>",
"name": "<string>",
"dataType": "text",
"modelType": "user",
"description": "<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/custom-data-points \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"dataType": "text",
"modelType": "user",
"description": "<string>"
}'
{
"id": "<string>",
"name": "<string>",
"dataType": "text",
"modelType": "user",
"description": "<string>"
}
Assistant
Responses are generated using AI and may contain mistakes.