Bulk resend user invitations

Resend invitation emails to multiple pending users. Each operation is attempted independently; partial success is possible.

Body
required
application/json
  • ids
    Type: array string[] 1…50
    required

    User IDs to resend invitations to

Responses
  • application/json
  • application/json
  • application/json
  • application/json
Request Example for post/users/bulk/resend-invite
curl https://api.gpcn.com/v1/users/bulk/resend-invite \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'X-API-Key: YOUR_SECRET_TOKEN' \
  --data '{
  "ids": [
    ""
  ]
}'
{
  "success": true,
  "message": "Bulk resend invite completed",
  "data": {
    "results": [
      {
        "id": "string",
        "success": true,
        "error": "string"
      }
    ],
    "summary": {
      "total": 1,
      "succeeded": 1,
      "failed": 1
    }
  },
  "meta": null
}