Retrieve SDK default values
Category: Create Account
Description: Returns the SDK default parameters for the account creation associated to a specific apiKey
Type: GET
URL: /get-sdk-defaults
Body Params
Error Handling
| HTTP Status | Meaning |
|---|---|
| 200 | OK |
| 512 | Internal server error while getting sdk defaults |
Code Examples
Installation
tsx
npm i node-fetchnpm i node-fetchRequest
tsx
const chainId = this.chainId;
const url = `${this.backendUrl}/get-sdk-defaults?` + new URLSearchParams({...(chainId as any)})
let config = {
method: "get",
maxBodyLength: Infinity,
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${this.apiKey}`,
}
};
const response = await fetch(url, config)
const JSONResponse = await response.json()const chainId = this.chainId;
const url = `${this.backendUrl}/get-sdk-defaults?` + new URLSearchParams({...(chainId as any)})
let config = {
method: "get",
maxBodyLength: Infinity,
headers: {
"Content-Type": "application/json",
Authorization: `Bearer ${this.apiKey}`,
}
};
const response = await fetch(url, config)
const JSONResponse = await response.json()