Team

Manage organization team members. This module allows viewing, creating, editing, and deleting team members.

Available Endpoints

Method Path Description
GET /api/team List all team members
POST /api/team Create new team member
GET /api/team/{id} View member details
PUT /api/team/{id} Full update of a member
PATCH /api/team/{id} Partial update of a member
DELETE /api/team/{id} Delete a member

Example Request

curl -X GET "https://example.com/api/team" \
  -H "Authorization: Bearer {token}"

Success Response (200)

{
  "records": [],
  "meta": {
    "total": 0,
    "current_page": 1,
    "per_page": 20
  }
}

Errors

Code Description
401 Invalid token
403 Access denied
404 Record not found
422 Validation error
Type to search...