Resend an invitation
POST
/auth/v1/memberships/{orgId}/members/invite/resendResends the pending organization invitation to the specified member.
Authorization
Bearer Authorization<token>
In: header
Path Parameters
orgId*string
Organization ID
Request Body
requiredapplication/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