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>"
  }
}
'
{
  "data": {
    "logo": "<string>"
  },
  "error": null
}

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
null
required