For AI agents: a documentation index is available at the root level at /llms.txt and /llms-full.txt. Append /llms.txt to any URL for a page-level index, or .md for the markdown version of any page.
Help CenterOpenAPI SpecStatus
OverviewInquiriesTransactionsRelaysAPI ReferenceChangelog
OverviewInquiriesTransactionsRelaysAPI ReferenceChangelog
  • Getting Started
    • Introduction
    • Quickstart Tutorial
  • API Overview
    • API Keys
    • Authentication
    • Protocol
    • Response Body
    • Idempotence
    • Pagination
    • Rate Limiting
    • Downloading Files
    • API Logs
    • Request IDs
  • Versioning
    • API Changelog
    • Versioning
  • Troubleshooting
    • Error Handling
  • API Reference
    • OpenAPI Specification
    • Cases
    • Connect
    • Documents
    • Inquiries
    • List Items
    • Lists
    • OAuth
    • Reports
    • Transactions
    • Verifications
    • Workflows
  • Webhooks
      • POSTImporter pipeline run canceled
      • POSTImporter pipeline run completed
      • POSTImporter pipeline run errored
      • POSTImporter pipeline run paused
      • POSTImporter pipeline run resumed
      • POSTImporter pipeline run started
LogoLogo
Help CenterOpenAPI SpecStatus
WebhooksImporter Pipeline Run Events

Importer pipeline run errored

Payload
1{
2 "data": {
3 "attributes": {
4 "created-at": "2024-01-15T11:05:15.732Z",
5 "name": "importer-pipeline-run.errored",
6 "payload": {
7 "data": {
8 "type": "importer-pipeline-run",
9 "id": "mprtpr_ABC123DEF456",
10 "attributes": {
11 "reference-id": "import-batch-002",
12 "status": "errored",
13 "run-count": 2,
14 "started-at": "2024-01-15T11:00:00.000Z",
15 "ended-at": "2024-01-15T11:05:15.000Z",
16 "created-at": "2024-01-15T10:59:45.000Z",
17 "updated-at": "2024-01-15T11:05:15.000Z",
18 "run-data": {
19 "column-names": [
20 "name",
21 "email",
22 "phone"
23 ],
24 "error-count": 150,
25 "rows-read": 150,
26 "row-count": 150,
27 "success-count": 0,
28 "created-count": 0,
29 "updated-count": 0,
30 "estimated-total-count": 1000
31 }
32 },
33 "relationships": {
34 "importer-pipeline": {
35 "data": {
36 "id": "mprtp_XYZ789ABC123",
37 "type": "importer-pipeline"
38 }
39 }
40 }
41 },
42 "included": [
43 {
44 "type": "importer-pipeline",
45 "attributes": {
46 "name": "Customer Data Import",
47 "status": "active",
48 "run-type": "manual",
49 "destination": "account",
50 "created-at": "2024-01-01T12:00:00.000Z",
51 "updated-at": "2024-01-15T11:05:15.000Z",
52 "pipeline-config": {
53 "destination": "account",
54 "sync-mode": "upsert",
55 "archive-after-completion": false
56 }
57 },
58 "id": "mprtp_XYZ789ABC123"
59 }
60 ]
61 }
62 },
63 "id": "evt_ABC123DEF456GHI789JKL012MNO345",
64 "type": "event"
65 }
66}
Webhook for the `importer-pipeline-run.errored` event. For more info see [Webhooks Overview](https://docs.withpersona.com/webhooks).
Was this page helpful?
Previous

Importer pipeline run paused

Next
Built with

Webhook for the importer-pipeline-run.errored event. For more info see Webhooks Overview.

Headers

Persona-SignaturestringOptional

Header. An HMAC that you should use to check that requests are authentic. Compare this value with your own digest, computed from the request body and your webhook secret. For more info see Webhook Best Practices.

Persona-Webhook-Attempts-MadeintegerOptional
The number of times that Persona has attempted to deliver this webhook. This value is incremented each time Persona attempts to deliver the webhook, regardless of whether the delivery was successful.
Persona-Webhook-Attempts-LeftintegerOptional
The number of times that Persona will attempt to deliver this webhook. This value is decremented each time Persona attempts to deliver the webhook.
Persona-Webhook-First-Attempted-AtintegerOptional
The time at which Persona first attempted to deliver this webhook. This value is a Unix timestamp in seconds.

Payload

The payload of this webhook request is an object.
dataobjectOptional

Response

200

Return a 2xx status code to indicate that the data was received successfully. Any other status will trigger retries. For more info see Retry Logic.