Argyle · Schema
PartnerVerificationCreationFailedWebhookMessage
Employment DataPayrollIncome VerificationGig EconomyFinancial DataEmployment HistoryEarned Wage AccessDirect Deposit
Properties
| Name | Type | Description |
|---|---|---|
| event | string | `verifications.creation_failed` |
| name | string | Name used for the webhook subscription. |
| data | object |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"$id": "https://raw.githubusercontent.com/api-evangelist/argyle/refs/heads/main/json-schema/partnerverificationcreationfailedwebhookmessage.json",
"title": "PartnerVerificationCreationFailedWebhookMessage",
"type": "object",
"properties": {
"event": {
"type": "string",
"description": "`verifications.creation_failed`",
"example": "verifications.creation_failed"
},
"name": {
"type": "string",
"description": "Name used for the webhook subscription."
},
"data": {
"type": "object",
"properties": {
"user": {
"type": "string",
"format": "uuid",
"description": "ID of the user.",
"example": "018051aa-f7a9-a0db-2f38-6cfa325e9d69"
},
"client": {
"type": "string",
"format": "uuid",
"description": "ID of the client.",
"example": "39096494-45c8-4fd8-9454-3d1cb2d62db7"
},
"context": {
"$ref": "#/components/schemas/PartnerVerificationCreationFailedContext"
}
}
}
},
"example": {
"event": "verifications.creation_failed",
"name": "name-for-the-webhook-subscription",
"data": {
"user": "018051aa-f7a9-a0db-2f38-6cfa325e9d69",
"client": "39096494-45c8-4fd8-9454-3d1cb2d62db7",
"context": {
"user": "018051aa-f7a9-a0db-2f38-6cfa325e9d69",
"attempted_at": "2023-03-09T16:22:06.081Z",
"channel": "encompass",
"data_source": "banking",
"report_type": "voa",
"loan": {
"number": "1234",
"borrower_id": "ABC789",
"application_id": "2121313",
"officer_email": "[email protected]"
},
"billing": {
"cost_center": "5"
}
}
}
}
}