/meInspect the current token
Returns the token owner, workspace, scope, live permissions, role assignments, and current access revision.
curl --request GET \
--url "https://cadylo.app/api/v1/me" \
--header "Authorization: Bearer $CADYLO_TOKEN"{
"data": {
"user": {
"id": "c03ed56c-fb31-47c5-8f7f-9708060d933a",
"display_name": "Ada Lovelace",
"email": "ada@example.com"
},
"workspace": {
"id": "5a6ded09-51ac-4da5-b047-581d0206da43",
"slug": "acme",
"name": "Acme"
},
"scope": "write",
"access_revision": 12,
"workspace_permissions": ["issues.view", "issues.create"],
"assignments": []
}
}
Conversation
Comments
Read the discussion on an issue or add a comment as the token owner. Historical comments keep their body after an account is deleted, with author set to null.
/issues/{issueKey}/commentsList comments
Returns visible comments oldest first with cursor-based pagination.
Query parameters
limitcursor/issues/{issueKey}/commentsCreate a comment
Adds a comment as the token owner. The body must contain between 1 and 10,000 characters.
JSON body
bodyrequired