curl --request GET \
--url https://api.hyra.io/workspace/trello/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"type": "<string>",
"trello": {
"id": "<string>",
"username": "<string>"
},
"board": {
"id": "<string>",
"name": "<string>",
"background": {
"color": "<string>",
"brightness": "<string>",
"image": "<string>"
}
},
"oauth_token": "<string>"
}
Get workspace Trello information
curl --request GET \
--url https://api.hyra.io/workspace/trello/{workspaceId} \
--header 'Authorization: Bearer <token>'
{
"type": "<string>",
"trello": {
"id": "<string>",
"username": "<string>"
},
"board": {
"id": "<string>",
"name": "<string>",
"background": {
"color": "<string>",
"brightness": "<string>",
"image": "<string>"
}
},
"oauth_token": "<string>"
}
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Default Response
The response is of type object
.