Resend invitation to a member
POST
/api/members/{id}/resend
const url = 'https://example.com/api/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/resend';const options = { method: 'POST', headers: {Authorization: 'Bearer <token>', 'Content-Type': 'application/json'}, body: '{"appUrl":"https://app.dreamcenterconnect.com"}'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request POST \ --url https://example.com/api/members/2489E9AD-2EE2-8E00-8EC9-32D5F69181C0/resend \ --header 'Authorization: Bearer <token>' \ --header 'Content-Type: application/json' \ --data '{ "appUrl": "https://app.dreamcenterconnect.com" }'Authorizations
Section titled “Authorizations”Parameters
Section titled “Parameters”Path Parameters
Section titled “Path Parameters”id
required
string format: uuid
Request Body
Section titled “Request Body”Media typeapplication/json
object
appUrl
Base application callback URL.
string
Example
https://app.dreamcenterconnect.comResponses
Section titled “Responses”Invitation resent successfully
Unauthorized
Forbidden
Member not found