Current User
Update User Profile
Authentication API
- Tokens
Leaked Credentials API
- Credentials
- Sources
- Identities
- Cookies
Events API
- Events
- Event Feeds
- Global Search
Management API
- Identifiers
- Identifier Groups
- Alerts
- Current User
- Organization Members
- Reporting
- Tenants
Threat-Flow API
- Reports
Deprecated APIs
- Global Search
- Identities
- Event Feeds
Current User
Update User Profile
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
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Body
application/json
Available options:
auto
, light
, dark
Example:
"auto"
Response
200
application/json
Success
Available options:
auto
, light
, dark
Example:
"auto"
User's email
User's language
Users's name
ID of the owner organization
User's surname
The uniform resource name of the user.
This tenant's purpose
ID of the feed
Tenant ID
The industry of the tenant.
Indicates if the tenant is archived
Tenant name
The number of employees for the tenant.
ID of the owner organization
Indicates if the tenant can perform global searches
Tenant type
The uniform resource name of the tenant.
Was this page helpful?
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>"
}
]
}
}