GET
/
workspace
/
trello
/
{workspaceId}
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>"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

workspaceId
string
required

Response

200 - application/json
Default Response
type
string
required
trello
object
board
object
oauth_token
string