PUT
/
me
/
profile
curl --request PUT \
  --url https://api.flare.io/firework/v2/me/profile \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "color_scheme": "auto",
  "language": "<string>",
  "name": "<string>",
  "settings": {},
  "surname": "<string>"
}'
{
  "profile": {
    "color_scheme": "auto",
    "email": "<string>",
    "feature_flags": {},
    "id": 123,
    "is_admin": true,
    "is_disabled": true,
    "language": "<string>",
    "name": "<string>",
    "organization_id": 123,
    "organization_member_permissions": {},
    "registered_at": "2023-11-07T05:31:56Z",
    "settings": {
      "default_search": "<string>",
      "organization_member_permissions": [
        "<string>"
      ],
      "permissions": [
        "<string>"
      ]
    },
    "surname": "<string>",
    "urn": "<string>",
    "domain": "<string>",
    "has_password": true,
    "is_sso_mandatory": true,
    "needs_eusa": true,
    "rate": {
      "api": 123,
      "reset_at": "2023-11-07T05:31:56Z"
    },
    "tenants": [
      {
        "description": "<string>",
        "feed_id": 123,
        "id": 123,
        "industry": "<string>",
        "is_archived": true,
        "name": "<string>",
        "number_of_employees": 123,
        "organization_id": 123,
        "permissions": [
          "<string>"
        ],
        "prevent_global_search": true,
        "type": "<string>",
        "urn": "<string>"
      }
    ]
  }
}

Authorizations

Authorization
string
header
required

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

Body

application/json
color_scheme
enum<string>
required
Available options:
auto,
light,
dark
Example:

"auto"

name
string
required
settings
object
required
surname
string
required
language
string

Response

200
application/json
Success
profile
object