Activate Account
Select
SaaS
This API can be used to activate an account using its metallic id. The account activation process is asynchronous. The account status becomes activating when account activation is initiated. Once activation is complete in all the systems account status is active.
Path Variables
Field | Description | Type | Notes |
---|---|---|---|
accountId | Account metallic id | UUID |
Request Body
No body
Response Body
Same as 'Get Account by Id - Response Body (Account Object)'
Path Parameters
- id string required
Account metallic id
Responses
- 200
OK
- application/json
- Schema
- Activate Account - Success
Schema
{
"data": {
"id": "7194af6f-1285-4295-94aa-ceed7ea2d792",
"status": "activating",
"insertTs": "2021-06-07T21:16:48",
"updateTs": "2021-06-07T21:16:48",
"externalId": "XSP1234",
"name": "Acme ltd",
"website": "www.acme.com",
"provisionCountry": "United States",
"contacts": [
{
"type": "admin",
"email": "tada@acme.com",
"firstName": "Tada",
"lastName": "Wu",
"phone": "+1 302 000 2020",
"address": {
"addressLine1": "1 Ave",
"addressLine2": "Suite 204",
"city": "Sunnyvale",
"state": "California",
"country": "United States",
"postalCode": "94086"
}
}
],
"type": "Production"
}
}
Loading...