post
https://api.mywishweaver.com/api/card-admins
Add an admin to a card.
Use this when the account owner wants another person to help manage a card. Admin privileges are scoped to the specific card.
Typical flow:
- Create or locate a card.
- Call this endpoint with the admin email and desired privileges.
- Use
GET /api/card-admins/card/:card_idto review current admins. - Use
PUT /api/card-admins/:card_admin_idto adjust privileges later.
Example:
curl -X POST "$BASE_URL/api/card-admins" \
-H "Authorization: Bearer <access_token>" \
-H "Content-Type: application/json" \
-d '{
"card_id": "<card_id>",
"email": "[email protected]",
"name": "Team Manager",
"privilege": {
"can_update": true,
"invite_contributors": true,
"admin_management": true
}
}'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