Skip to main content
Use this endpoint to resend the invitation email to a team member whose account is still in a pending state — meaning they have not yet clicked the invitation link and set their password. This is useful when the original invitation email was not received or the link has expired.

Endpoint

POST /api/v1/auth/web/resend_member_invite

Authentication

This endpoint requires a valid Dashboard JWT. Pass the token in the Authorization header:
Authorization: Bearer <access_token>

Request Body

user_id
string (UUID)
required
The unique identifier of the pending team member to whom you want to resend the invitation. Use Fetch Members to identify members who have not yet accepted their invite.

Response

{
  "status": true,
  "response_code": "00",
  "message": "Invitation resent successfully",
  "data": {}
}

Example

curl -X POST https://baasapi.payrepmfb.com/api/v1/auth/web/resend_member_invite \
  -H "Authorization: Bearer <access_token>" \
  -H "Content-Type: application/json" \
  -d '{
    "user_id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890"
  }'