Create account
POST
/api/v1/accounts
const url = 'https://example.com/api/v1/accounts';const options = { method: 'POST', headers: {'Content-Type': 'application/json'}, body: '{"additionalProperty":"example"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/v1/accounts \ --header 'Content-Type: application/json' \ --data '{ "additionalProperty": "example" }'Request Body
Section titled “Request Body ” Media type application/json
object
key
additional properties
Responses
Section titled “ Responses ”Account created
Media type application/json
object
key
additional properties