Suppliers

POST /suppliers/invitations/{id}/resend

Resend a supplier invitation with an updated email address. Requires suppliers.invite permission.

Path parameters

Name Type Required Description
id string yes The unique identifier of the record

Request body

Required.

application/json

  • email string (email) · required
{
    "email": "new@example.com"
}

Responses

Status Description
200 Invitation resent successfully
403 The requesting user lacks appropriate permissions
404 The invitation was not found
422 Validation errors

Response 200 body

  • message string
{
    "message": "This is the message"
}