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
- Custom Fields
- DeeplinkUrls
- Mfa
- Waas
Settings
Get the providers for an environment
GET
/
environments
/
{environmentId}
/
settings
/
providers
Copy
Ask AI
curl --request GET \
--url https://app.dynamicauth.com/api/v0/environments/{environmentId}/settings/providers
Copy
Ask AI
{
"providers": [
{
"id": "95b11417-f18f-457f-8804-68e361f9164f",
"provider": "emailOnly",
"enabledAt": "2023-11-07T05:31:56Z",
"clientId": "<string>",
"clientSecret": "<string>",
"providerProjectId": "<string>",
"authorizationUrl": "<string>",
"redirectUrl": "<string>",
"defaultChainId": 123,
"defaultChain": "eip155:1",
"keyExportUrl": "<string>",
"termsAcceptedByUser": {
"termsUrl": "<string>",
"email": "[email protected]",
"userId": "95b11417-f18f-457f-8804-68e361f9164f",
"createdAt": "2023-11-07T05:31:56Z"
},
"scopes": "<string>",
"baseAuthUrl": "<string>",
"appleKeyId": "<string>",
"appleTeamId": "<string>",
"shopifyStore": "<string>",
"accountSid": "<string>",
"twilioNumber": "<string>",
"enabledCountries": [
{
"isoCountryCode": "US",
"phoneCountryCode": "An example name"
}
],
"entryPointVersion": "v6",
"kernelVersion": "v2_4",
"factoryAddress": "<string>",
"paymasterAddress": "<string>",
"passkeyAddress": "<string>",
"sessionAddress": "<string>",
"salt": "<string>",
"multichainAccountAbstractionProviders": [
{
"clientId": "<string>",
"chain": "<string>",
"default": true
}
],
"ecdsaProviderType": "zerodev_signer_to_ecdsa",
"createNewAccounts": true,
"enableKernelV3Migration": true,
"enableEIP7702": true,
"zerodevBundlerProvider": "STACKUP",
"zerodevBundlerRpcUrl": "<string>",
"zerodevPaymasterRpcUrl": "<string>",
"zerodevKernelDelegationAddress": "<string>"
}
]
}
Path Parameters
ID of the environment
Required string length:
36
Example:
"95b11417-f18f-457f-8804-68e361f9164f"
Response
200
application/json
List of providers for this project environment
The response is of type object
.
Was this page helpful?
Copy
Ask AI
curl --request GET \
--url https://app.dynamicauth.com/api/v0/environments/{environmentId}/settings/providers
Copy
Ask AI
{
"providers": [
{
"id": "95b11417-f18f-457f-8804-68e361f9164f",
"provider": "emailOnly",
"enabledAt": "2023-11-07T05:31:56Z",
"clientId": "<string>",
"clientSecret": "<string>",
"providerProjectId": "<string>",
"authorizationUrl": "<string>",
"redirectUrl": "<string>",
"defaultChainId": 123,
"defaultChain": "eip155:1",
"keyExportUrl": "<string>",
"termsAcceptedByUser": {
"termsUrl": "<string>",
"email": "[email protected]",
"userId": "95b11417-f18f-457f-8804-68e361f9164f",
"createdAt": "2023-11-07T05:31:56Z"
},
"scopes": "<string>",
"baseAuthUrl": "<string>",
"appleKeyId": "<string>",
"appleTeamId": "<string>",
"shopifyStore": "<string>",
"accountSid": "<string>",
"twilioNumber": "<string>",
"enabledCountries": [
{
"isoCountryCode": "US",
"phoneCountryCode": "An example name"
}
],
"entryPointVersion": "v6",
"kernelVersion": "v2_4",
"factoryAddress": "<string>",
"paymasterAddress": "<string>",
"passkeyAddress": "<string>",
"sessionAddress": "<string>",
"salt": "<string>",
"multichainAccountAbstractionProviders": [
{
"clientId": "<string>",
"chain": "<string>",
"default": true
}
],
"ecdsaProviderType": "zerodev_signer_to_ecdsa",
"createNewAccounts": true,
"enableKernelV3Migration": true,
"enableEIP7702": true,
"zerodevBundlerProvider": "STACKUP",
"zerodevBundlerRpcUrl": "<string>",
"zerodevPaymasterRpcUrl": "<string>",
"zerodevKernelDelegationAddress": "<string>"
}
]
}
Assistant
Responses are generated using AI and may contain mistakes.