Add Payment Info Using Link
The ADD_PAYMENT_INFO_USING_LINK event is triggered patient added their payment info via payment setup link.
Attributes
eventstringThe name of the event that was triggered. For this webhook, the value will always be ADD_PAYMENT_INFO_USING_LINK.
payloadobjectContains all the data associated with the payment information addition event.
Show child attributes
activityobjectDetails of the activity that occurred when payment info was added.
Show child attributes
idstring<UUID>The unique identifier of the activity record.
typestringSpecifies the type of the activity, here it will always be ADD_PAYMENT_INFO_USING_LINK.
isPHIbooleanIndicates whether the activity involves Protected Health Information (PHI).
isRestrictedbooleanIndicates whether the activity details are restricted or confidential.
timestampstring<ISO8601 DateTime>The exact date and time when the payment information was added.
valueBeforestring | nullThe previous state or value before the payment information was added (null if none).
valueAfterstringA description or message indicating the result of the event (e.g., 'payment info has been added').
actorobjectDetails of the user who performed the action (added payment information).
Show child attributes
idstring<UUID>The unique identifier of the user who performed the action.
firstNamestringThe first name of the actor.
lastNamestringThe last name of the actor.
emailstring<email>The email address of the actor.
targetUserobjectDetails of the user whose payment information was updated.
Show child attributes
idstring<UUID>The unique identifier of the target user.
firstNamestringThe first name of the target user.
lastNamestringThe last name of the target user.
emailstring<email>The email address of the target user.
caseIdstring<UUID>The unique identifier of the case associated with the payment information update.
Response
{
"event": "ADD_PAYMENT_INFO_USING_LINK",
"payload": {
"activity": {
"id": "e02120ac-54d7-406e-939f-a734475f4105",
"type": "ADD_PAYMENT_INFO_USING_LINK",
"isPHI": false,
"isRestricted": true,
"timestamp": "2025-11-07T22:04:19.702Z",
"valueBefore": null,
"valueAfter": "payment info has been added",
"actor": {
"id": "j0etUrcaTaQFoOPmi8ZGuwwZk9s1",
"firstName": "Ritik-3",
"lastName": "Parikh-3",
"email": "ritik.parikh+03@carevalidate.com"
},
"targetUser": {
"id": "j0etUrcaTaQFoOPmi8ZGuwwZk9s1",
"firstName": "Ritik-3",
"lastName": "Parikh-3",
"email": "ritik.parikh+03@carevalidate.com"
}
},
"caseId": "000de576-8844-4d42-abba-a235d741e323"
}
}