Nurama Developers
Board Following

Follow a board

Add the current user to the board's followers list. Idempotent — following again has no effect. Board followers receive email notifications when new tasks are created.

PUT
/boards/{boardId}/follow

Add the current user to the board's followers list. Idempotent — following again has no effect. Board followers receive email notifications when new tasks are created.

Authorization

bearerAuth
AuthorizationBearer <token>

In: header

Path Parameters

boardId*string
Formatuuid

Response Body

application/json

application/json

application/json

curl -X PUT "https://example.com/boards/497f6eca-6276-4993-bfeb-53cbbbba6f08/follow"
{  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",  "projectId": "5a8591dd-4039-49df-9202-96385ba3eff8",  "creatorId": "688ebf54-d343-4104-8711-82c2feac534a",  "name": "string",  "description": "string",  "visibility": [    "creator"  ],  "status": "active",  "pendingDeleteAt": "2019-08-24T14:15:22Z",  "followers": [    "6021b93c-6a2e-4145-985c-40bb9e171532"  ],  "tags": [    "a424dc99-d215-4281-ad2d-a3a9bc179925"  ],  "sortOrder": 0,  "inheritanceId": "09c886ac-e6e5-4263-a494-a6e14f7e4f46",  "columns": [    {      "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",      "boardId": "a654038e-9287-48a2-acfd-90b8cfa8b1f4",      "name": "string",      "description": "string",      "color": "string",      "isDefault": true,      "taskStatus": "pending",      "reviewersCanContribute": true,      "sortOrder": 0,      "createdAt": "2019-08-24T14:15:22Z",      "updatedAt": "2019-08-24T14:15:22Z"    }  ],  "createdAt": "2019-08-24T14:15:22Z",  "updatedAt": "2019-08-24T14:15:22Z"}