POST
/
asset
/
submit
Submit assets to process and assign to organization(s)
curl --request POST \
  --url https://app.chainpatrol.io/api/v2/asset/submit \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "assets": [
    "<string>"
  ],
  "organizationSlug": "<string>"
}'
{
  "submittedAssets": [
    {
      "asset": "<string>",
      "assetId": 123,
      "scanId": 123
    }
  ]
}
API Key is Required

Authorizations

X-API-KEY
string
header
required

Your API key. This is required by most endpoints to access our API programatically. Reach out to us at [email protected] to get an API key for your use.

Body

application/json

Response

200
application/json

Successful response

The response is of type object.