Skip to content
POST /integrated-account/{id}/validate

Path Parameters

idstring · uuid
required·

The integrated account to validate.

Response Body

errorstring

Present only when success is false. The failure that stopped the run, and the same value written to the account's last_error.

stepsobject[]

One entry per step, in the order they ran.

successboolean

Whether every step passed.

Example: true
curl -X POST 'https://api.truto.one/integrated-account/{id}/validate' \
  -H 'Authorization: Bearer <your_api_token>' \
  -H 'Content-Type: application/json'
const response = await fetch('https://api.truto.one/integrated-account/{id}/validate', {
  method: 'POST',
  headers: {
    'Authorization': 'Bearer <your_api_token>',
    'Content-Type': 'application/json',
  },
});

const data = await response.json();
console.log(data);
import requests

url = "https://api.truto.one/integrated-account/{id}/validate"
headers = {
    "Authorization": "Bearer <your_api_token>",
    "Content-Type": "application/json",
}
params = {
}

response = requests.post(url, headers=headers, params=params)
print(response.json())