Rest API
- Introduction
- GlobalWallets
- GlobalWalletAccessControl
- NameServices
- TestAccount
- CustomHostnames
- Exports
- Gates
- Settings
- Analytics
- Organizations
- Projects
- Custom Networks
- Chainalysis
- Environments
- Sessions
- Wallets
- Users
- Visits
- Members
- MfaSettings
- Invites
- ExternalJwt
- Origins
- UserApiTokens
- Tokens
- Allowlists
- Chains
- SDK Views
- Events
- Webhooks
- SDK
- Authentication & Authorization
- POSTInitialize oauth auth sequence
- GETCheck that session is valid
- POSTEndpoint to sign-in using a token issued by an external auth provider
- POSTEndpoint to refresh the JWT auth token using the current valid JWT auth token in the authorization header
- GETGet signin email provider
- POSTInitialize email verification process
- POSTInitialize sms verification process
- POSTSend new code for sms verification
- POSTVerify sms verification request
- POSTVerify an sms and sign in user
- POSTVerify email verification request
- POSTVerify an email and sign in user
- POSTSend new code for email verification
- GETGet the current user's MFA Devices
- GETGet the current user's MFA by device id
- PUTUpdate a device
- DELDelete a device (if not default device)
- GETRegister a new TOTP MFA device and get Totp Secret
- POSTVerify TOTP MFA device
- POSTUpgrade JWT scope with valid MFA session
- GETRegister a new Passkey MFA device
- POSTVerify Passkey MFA device
- GETAuth Passkey MFA device
- GETGet recovery codes
- POSTGenerate new recovery codes for user
- POST
- Wallet Management
- Transaction & Network
- User Management
- Security & Compliance
- Integration & Configuration
- Analytics & Monitoring
- Provider Integration
- Custom Fields
- DeeplinkUrls
- Mfa
- Waas
Authentication & Authorization
Send new code for sms verification
POST
/
sdk
/
{environmentId}
/
smsVerifications
/
retry
Copy
Ask AI
curl --request POST \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/smsVerifications/retry \
--header 'Content-Type: application/json' \
--data '{
"verificationUUID": "95b11417-f18f-457f-8804-68e361f9164f",
"phoneCountryCode": "An example name",
"phoneNumber": "An example name",
"isoCountryCode": "US",
"captchaToken": "<string>"
}'
Copy
Ask AI
{
"verificationUUID": "95b11417-f18f-457f-8804-68e361f9164f",
"phoneNumber": "9171113333",
"phoneCountryCode": "1",
"isoCountryCode": "US"
}
Path Parameters
ID of the environment
Required string length:
36
Example:
"95b11417-f18f-457f-8804-68e361f9164f"
Body
application/json
Sms Verification Id
The body is of type object
.
Response
201
application/json
Successful response, a new code has been set
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request POST \
--url https://app.dynamicauth.com/api/v0/sdk/{environmentId}/smsVerifications/retry \
--header 'Content-Type: application/json' \
--data '{
"verificationUUID": "95b11417-f18f-457f-8804-68e361f9164f",
"phoneCountryCode": "An example name",
"phoneNumber": "An example name",
"isoCountryCode": "US",
"captchaToken": "<string>"
}'
Copy
Ask AI
{
"verificationUUID": "95b11417-f18f-457f-8804-68e361f9164f",
"phoneNumber": "9171113333",
"phoneCountryCode": "1",
"isoCountryCode": "US"
}
Assistant
Responses are generated using AI and may contain mistakes.