Reapply for email onboarding review

Allows an organization owner or admin to submit a rejected organization for review again. The expected generation prevents acting on stale status.

POST
/v1/email/onboarding-review/reapply

Allows an organization owner or admin to submit a rejected organization for review again. The expected generation prevents acting on stale status.

x-api-key<token>

In: header

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

expectedGeneration*integer

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/v1/email/onboarding-review/reapply" \  -H "Content-Type: application/json" \  -d '{    "expectedGeneration": 0  }'
{  "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