Task Management API

Base URL

All URLs referenced in the documentation have the following base:

https://api.meetandrock.com/v1/dev

Authentication

All API endpoints require a valid API key in the Authorization header:

curl -H "Authorization: Bearer YOUR_API_KEY" \
  https://api.meetandrock.com/v1/dev/task-boards

Endpoints

List Task Boards

curl -X GET "https://api.meetandrock.com/v1/dev/task-boards" \
  -H "Authorization: Bearer YOUR_API_KEY"

Response:
{
  "data": [
    {
      "id": "uuid",
      "name": "string",
      "description": "string",
      "status": "active|archived",
      "created_at": "datetime",
      "updated_at": "datetime"
    }
  ]
}

Contents