Zapry club creation and management capability.
groupsfeedcreateClubpostToClubupdateClubmessaging when needed.| API | Purpose | Required Fields | Notes |
|---|---|---|---|
createClub | Create a club | name | Validate naming rules and uniqueness |
postToClub | Post content in club | club_id, content | Recommend attaching category and tags |
updateClub | Update club info | club_id, patch | Audit before and after changes |
Request example (createClub):
{
"name": "Zapry Builders",
"description": "Official builders club"
}
Response example:
{
"ok": true,
"result": {
"club_id": "club_123"
}
}
401: Auth failure. Terminate flow.429: Rate limit hit. Delay retry.Business error: Invalid parameters or insufficient permissions. Return clear reason.Target not found: Invalid club ID. Return explainable failure.See examples.md in this directory.