Get email onboarding review status

Returns the customer-safe organization review decision, workflow stage, next action, and current sending-identity clearances.

GET
/v1/email/onboarding-review

Returns the customer-safe organization review decision, workflow stage, next action, and current sending-identity clearances. A missing authority row is returned as a blocked initial state.

x-api-key<token>

In: header

Response Body

application/json

application/json

application/json

application/json

curl -X GET "https://example.com/v1/email/onboarding-review"
{  "decision": "undecided",  "stage": "collecting",  "generation": 0,  "canSend": true,  "code": "review_required",  "nextAction": "wait_for_review",  "canReapply": true,  "informationRequest": {    "id": "string",    "requestedFields": [      "string"    ],    "requestedAt": "string",    "canRespond": true  },  "identities": [    {      "identityId": "string",      "decision": "undecided",      "generation": 0,      "canSend": true,      "code": "review_required",      "nextAction": "wait_for_review",      "updatedAt": "string"    }  ],  "updatedAt": "string"}

Related