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
- Credentials
- Event Feeds
Current User
Update User Profile
PUT
/
me
/
profile
Copy
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>"
}'
Copy
{
"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
Response
200
application/json
Success
Was this page helpful?
Copy
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>"
}'
Copy
{
"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>"
}
]
}
}