curl --request POST \
--url https://api.hyperline.co/v1/apps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"callbacks": [
"<string>"
],
"description": "<string>",
"logo_uri": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
],
"client_id": "<string>",
"client_secret": "<string>"
}Create a new third-party app.
curl --request POST \
--url https://api.hyperline.co/v1/apps \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"name": "<string>",
"callbacks": [
"<string>"
],
"description": "<string>",
"logo_uri": "<string>"
}
'{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
],
"client_id": "<string>",
"client_secret": "<string>"
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Create app payload
App ID
App name
App description
App logo URL
List of URLs whitelisted to use as a callback after authentication.
OAuth client ID
OAuth client secret
Was this page helpful?