opensesh docs

Invite speakers to their portal

POST
/events/{eventId}/speakers/invite

Queues and sends portal invitation emails for the given event contacts.

Authorization

bearerAuth
AuthorizationBearer <token>

An organization API key (osk_…)

In: header

Path Parameters

eventId*string

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

application/json

application/json

application/json

curl -X POST "https://example.com/events/string/speakers/invite" \  -H "Content-Type: application/json" \  -d '{    "contactIds": [      "string"    ]  }'
{  "invitations": [    {      "contactId": "string",      "contactName": "string",      "portalPath": "string",      "alreadyInvited": true,      "logId": "string"    }  ],  "sent": 0}