Authentication API
- Tokens
Events API
- Events
- Event Feeds
- Global Search
Leaked Credentials API
- Credentials
- Sources
- Identities
- Cookies
Management API
- Identifiers
- Identifier Groups
- Alerts
- Current User
- Organization Members
- Reporting
- Tenants
Threat-Flow API
- Reports
Deprecated APIs
- Global Search
- Identities
- Credentials
- Event Feeds
Identifiers
Update Identifier
PUT
/
assets
/
{asset_id}
curl --request PUT \
--url https://api.flare.io/firework/v2/assets/{asset_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"count": 123,
"data": {},
"data_updated_at": "2023-11-07T05:31:56Z",
"experimental_search_types": [
"<string>"
],
"feed_id": 123,
"fetching_progress": 123,
"id": 123,
"is_disabled": true,
"name": "<string>",
"risks": [
123
],
"search_types": [
"seller"
],
"source": "USER",
"tenant_id": 123,
"type": "domain",
"urn": "<string>",
"v3_refs": {
"asset_uuid": "<string>"
}
}'
{
"asset": {
"count": 123,
"data": {},
"data_updated_at": "2023-11-07T05:31:56Z",
"experimental_search_types": [
"<string>"
],
"feed_id": 123,
"fetching_progress": 123,
"id": 123,
"is_disabled": true,
"name": "<string>",
"risks": [
123
],
"search_types": [
"seller"
],
"source": "USER",
"tenant_id": 123,
"type": "domain",
"urn": "<string>",
"v3_refs": {
"asset_uuid": "<string>"
}
}
}
Authorizations
Bearer authentication header of the form Bearer <token>
, where <token>
is your auth token.
Path Parameters
Body
application/json
Response
200
application/json
Success
The response is of type object
.
Was this page helpful?
curl --request PUT \
--url https://api.flare.io/firework/v2/assets/{asset_id} \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '{
"count": 123,
"data": {},
"data_updated_at": "2023-11-07T05:31:56Z",
"experimental_search_types": [
"<string>"
],
"feed_id": 123,
"fetching_progress": 123,
"id": 123,
"is_disabled": true,
"name": "<string>",
"risks": [
123
],
"search_types": [
"seller"
],
"source": "USER",
"tenant_id": 123,
"type": "domain",
"urn": "<string>",
"v3_refs": {
"asset_uuid": "<string>"
}
}'
{
"asset": {
"count": 123,
"data": {},
"data_updated_at": "2023-11-07T05:31:56Z",
"experimental_search_types": [
"<string>"
],
"feed_id": 123,
"fetching_progress": 123,
"id": 123,
"is_disabled": true,
"name": "<string>",
"risks": [
123
],
"search_types": [
"seller"
],
"source": "USER",
"tenant_id": 123,
"type": "domain",
"urn": "<string>",
"v3_refs": {
"asset_uuid": "<string>"
}
}
}