POST
/
asset
/
changelog
curl --request POST \
  --url https://app.chainpatrol.io/api/v2/asset/changelog \
  --header 'Content-Type: application/json' \
  --header 'X-API-KEY: <api-key>' \
  --data '{
  "type": "URL",
  "content": "<string>",
  "fromStatus": "UNKNOWN",
  "toStatus": "UNKNOWN",
  "startDate": "<string>",
  "endDate": "<string>"
}'
{
  "changelog": [
    {
      "assetId": 123,
      "type": "URL",
      "content": "<string>",
      "fromStatus": "UNKNOWN",
      "toStatus": "UNKNOWN",
      "updatedAt": "<string>"
    }
  ]
}

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.