Call

Make a custom call

post

Invokes a custom call endpoint (specific to ICP).

Body
network_identifierobjectoptional

methodstringoptional
parametersobjectoptional

Responses
curl -L \
  --request POST \
  --url 'https://icp-mainnet.icp.validationcloud.io/v1/<YOUR_API_KEY_HERE>/call' \
  --header 'Content-Type: application/json' \
  --data '{
    "network_identifier": {
      "blockchain": "Internet Computer",
      "network": "00000000000000020101",
      "sub_network_identifier": {
        "network": "text",
        "metadata": {
          "ANY_ADDITIONAL_PROPERTY": "anything"
        }
      }
    },
    "method": "text",
    "parameters": {
      "ANY_ADDITIONAL_PROPERTY": "anything"
    }
  }'
{
  "result": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  },
  "idempotent": true,
  "error": {
    "ANY_ADDITIONAL_PROPERTY": "anything"
  }
}

Was this helpful?