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
Action Configurations
Create Action Configuration
Action Configurations
Create Action Configuration
Creates an action configuration from an action code.
POST
/
action-configurations
curl --request POST \
--url https://api.authsignal.com/v1/management/action-configurations \
--header 'Content-Type: application/json' \
--data '{
"actionCode": "<string>",
"defaultUserActionResult": "ALLOW",
"messagingTemplates": {},
"verificationMethods": [
"SMS"
],
"promptToEnrollVerificationMethods": [
"PASSKEY"
],
"defaultVerificationMethod": "SMS"
}'
{
"lastActionCreatedAt": "<string>",
"actionCode": "<string>",
"tenantId": "<string>",
"defaultUserActionResult": "ALLOW",
"messagingTemplates": {},
"verificationMethods": [
"SMS"
],
"promptToEnrollVerificationMethods": [
"PASSKEY"
],
"defaultVerificationMethod": "SMS"
}
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/action-configurations \
--header 'Content-Type: application/json' \
--data '{
"actionCode": "<string>",
"defaultUserActionResult": "ALLOW",
"messagingTemplates": {},
"verificationMethods": [
"SMS"
],
"promptToEnrollVerificationMethods": [
"PASSKEY"
],
"defaultVerificationMethod": "SMS"
}'
{
"lastActionCreatedAt": "<string>",
"actionCode": "<string>",
"tenantId": "<string>",
"defaultUserActionResult": "ALLOW",
"messagingTemplates": {},
"verificationMethods": [
"SMS"
],
"promptToEnrollVerificationMethods": [
"PASSKEY"
],
"defaultVerificationMethod": "SMS"
}