PUT
/
v1
/
apps
/
{id}
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>"
}

Authorizations

Authorization
string
header
required

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

Path Parameters

id
string
required

Body

application/json

Update app payload

The body is of type object.

Response

200 - application/json

The response is of type object.