curl --request PUT \
--url https://api.hyperline.co/v1/apps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
]
}'
{
"id": "<string>",
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
],
"client_id": "<string>"
}
Update an existing third-party app.
curl --request PUT \
--url https://api.hyperline.co/v1/apps/{id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"name": "<string>",
"description": "<string>",
"logo_uri": "<string>",
"callbacks": [
"<string>"
]
}'
{
"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.
Update app payload
The body is of type object
.
The response is of type object
.
Was this page helpful?