You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
According to the MISP OpenAPI specification, there is an endpoint (POST /attributes/enrich/{attribute_id}) and (POST /events/enrichEvent/{eventId) for enriching events and attributes. However, I've been unable to find a corresponding higher-level function in PyMISP for this endpoint.
Is there an existing method for enriching events/attributes that I might be missing?
According to the MISP OpenAPI specification, there is an endpoint (POST /attributes/enrich/{attribute_id}) and (POST /events/enrichEvent/{eventId) for enriching events and attributes. However, I've been unable to find a corresponding higher-level function in PyMISP for this endpoint.
Currently using:
PyMISP’s direct_call():
mispdirect_call(f'/attributes/enrich/{attribute_id}', data=enrichment_modules)
mispdirect_call(f'/events/enrichEvent/{event_id}', data=enrichment_modules)
Requests directly:
The text was updated successfully, but these errors were encountered: