This guide gives new users a single path to get from raw JSON telemetry to a populated process datasheet inside Toro Pulse.
A process datasheet is the operational record for a process inside Toro Pulse. It combines process identity, ROI context, infrastructure signals, KPI values, governance metadata, and AI-oriented analysis inputs into a single page.
Telemetry payloads should be submitted to the ingest API using JSON over HTTPS with a tenant-scoped ingestion API key. Retrieve the current key from Settings → API Access in Toro Pulse.
POST /api/v1/ingest Content-Type: application/json Accept: application/json
For implementations that use the telemetry-specific route, also validate against the environment-specific endpoint map in the API reference.
{
"Telemetry": {
"Company": "Contoso Health",
"Process": "Invoice Intake",
"SessionID": "9a8dbe0a-1b2c-4d5e-9111-1b3f37d99001",
"TimestampUtc": "2026-04-01T15:30:00Z",
"Status": "Completed",
"TransactionsProcessed": 120,
"TransactionsFailed": 2,
"ResourceMachine": "RPA-VM-01"
}
}
For manual validation and testing, Toro Pulse supports drag-and-drop JSON ingestion on the datasheet workflow. This is useful when implementation teams want to test sample telemetry without wiring a live automation emitter yet.