post
https://api.mywishweaver.com/api/cards/invitations
Create contributor invitations for a card.
Use this after creating a card when you want to invite contributors by email, SMS, or group.
Typical flow:
- Create or locate a card with
POST /api/cardsorGET /api/cards. - Submit one or more invitees to this endpoint.
- Use
GET /api/cards/:card_id/invitationsto inspect invitation records. - Use
POST /api/cards/invitations/resendif you need to resend a specific invitation later.
Example:
curl -X POST "$BASE_URL/api/cards/invitations" \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json" \
-d '{
"card_id": "<card_id>",
"title": "Please sign Jordan's card",
"message": "Add your note before Friday.",
"invitees": [
{
"delivery_type": "email",
"delivery_id": "[email protected]"
}
]
}'Authentication for this endpoint requires this header:
Authorization: Bearer <access_token>
Generate the bearer token by:
- rotating credentials at
POST /account/api-access/credentials/rotate - exchanging them at
POST /account/api-access/token
Recent Requests
Log in to see full request history
| Time | Status | User Agent | |
|---|---|---|---|
Retrieving recent requests… | |||
Loading…
201