Resends the email invitation
Returns a resource object of type site_invitation.
1POST https://site-api.datocms.com/site-invitations/:site_invitation_id/resend HTTP/1.12Authorization: Bearer YOUR-API-TOKEN3Accept: application/json4X-Api-Version: 3
1curl -g 'https://site-api.datocms.com/site-invitations/:site_invitation_id/resend' \2 -X POST \3 -H "Authorization: Bearer YOUR-API-TOKEN" \4 -H "Accept: application/json" \5 -H "X-Api-Version: 3"
1await fetch(2 "https://site-api.datocms.com/site-invitations/:site_invitation_id/resend",3 {4 method: "POST",5 headers: {6 Authorization: "Bearer YOUR-API-TOKEN",7 Accept: "application/json",8 "X-Api-Version": "3",9 },10 },11);
1HTTP/1.1 200 OK2Content-Type: application/json3Cache-Control: cache-control: max-age=0, private, must-revalidate4X-RateLimit-Limit: 305X-RateLimit-Remaining: 286 7{8 "data": {9 "type": "site_invitation",10 "id": "312",11 "attributes": {12 "email": "mark.smith@example.com",13 "expired": "mark.smith@example.com"14 },15 "relationships": {16 "role": {17 "data": {18 "type": "role",19 "id": "34"20 }21 }22 }23 }24}