POST
/
v1
/
user
/
bulk-resend-invite
Resend multiple invitations
curl --request POST \
  --url https://staging.api.us.aptlydone.com/auth/v1/user/bulk-resend-invite \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "tenantId": "72f91ce7-0058-4800-a17d-8843e92411f6",
  "userIds": [
    "3e92b17a-2267-466c-a76e-f26ecce7cbb5",
    "c15558db-d132-4daa-a283-6e091a0b98d6"
  ]
}'
{
  "statusCode": 200,
  "timestamp": "2025-06-25T06:16:48.664Z",
  "message": "Success",
  "data": {
    "total": 5,
    "successful": 4,
    "failed": 1,
    "results": [
      {
        "email": "[email protected]",
        "success": true,
        "message": "Invitation resent successfully"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

application/json

Response

201 - application/json

Invitations resent successfully

The response is of type object.