Skip to main content
POST
/
integration
/
request
Request a new integration
curl --request POST \
  --url https://api.wirespeed.co/integration/request \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "name": "<string>",
  "useCase": "pull_detections",
  "importance": "nice_to_have",
  "notes": "<string>"
}
'

Documentation Index

Fetch the complete documentation index at: https://docs.wirespeed.co/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

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

Body

application/json
name
string
required

Name of the integration being requested

useCase
enum<string>
required

Primary use case for the integration

Available options:
pull_detections,
pull_logs,
containment,
identity_sync,
create_tickets,
other
importance
enum<string>
required

How important this integration is to the customer

Available options:
nice_to_have,
important,
blocking
notes
string

Any additional context

Response

204 - undefined