Resend an invitation

POST/auth/v1/memberships/{orgId}/members/invite/resend

Resends the pending organization invitation to the specified member.

Authorization<token>

In: header

Path Parameters

orgId*string

Organization ID

Request Body

required
application/json
{
  "$ref": "#/components/schemas/internal_auth.resendInviteBody",
  "$ref-value": {
    "properties": {
      "user_id": {
        "type": "string"
      }
    },
    "required": [
      "user_id"
    ],
    "type": "object"
  }
}

Response Body

204

No Content

curl -X POST "https://api.rixl.com/auth/v1/memberships/string/members/invite/resend" \
  -H "Content-Type: application/json" \
  -d '{
    "user_id": "string"
  }'

No Content