Skip to main content
POST
/
v1
/
auth
/
orgs
/
logo
Upload an organization logo
curl --request POST \
  --url http://127.0.0.1:8787/v1/auth/orgs/logo \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "logo": {
    "data": "<string>",
    "contentType": "image/png"
  }
}
'
{
  "data": {
    "logo": "<string>"
  },
  "error": {}
}

Documentation Index

Fetch the complete documentation index at: https://docs.kayle.id/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

Logo uploaded successfully.

data
object
required
error
object
required