Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Response
200 - application/json
curl --request GET \
--url https://api.hyperline.co/v1/apps \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
],
"client_id": "<string>"
}
]Retrieve all existing third-party apps.
curl --request GET \
--url https://api.hyperline.co/v1/apps \
--header 'Authorization: Bearer <token>'[
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
],
"client_id": "<string>"
}
]Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Was this page helpful?