Mono Colombia
Banking/CoreWebhooks

Collection Links

Webhook events for collection link payments.

When a person initiates a payment using a collection link, a webhook request is generated based on the state of the payment intent.

Event Types

EventDescription
collection_intent_creditedTriggered when an intent of payment has been successfully credited to the recipient's bank account. It signifies a successful transaction where the funds have been successfully transferred.
collection_intent_failedTriggered when an intent of payment could not be processed by the payment provider and, as a result, the payment was declined.

Payload Example

{
  "event": {
    "data": {
      "account_id": "acc_223RxfTSugBz8KfLSWoEnT",
      "amount": {
        "amount": 10000000,
        "currency": "COP"
      },
      "collection_link_id": "clink_3QVH4A9L4QQzAajaK4VMrB",
      "external_id": "b3852866-33b2-452c-b269-33591a38c4d0",
      "id": "cint_5dHsMj4uwhhujcVUTuw1OP",
      "inserted_at": "2023-01-04T17:16:32.812292Z",
      "note": "a Note",
      "payer": {
        "document_number": "1033711400",
        "document_type": "CC",
        "name": "peter rosas"
      },
      "payment": {
        "provider": "pse",
        "transaction_id": "3052043"
      },
      "reference": "REF #132ABC",
      "state": "account_credited",
      "updated_at": "2023-01-04T17:16:58.071790Z"
    },
    "type": "collection_intent_credited"
  },
  "timestamp": "2023-01-04T17:17:01.101130Z"
}

The external_id field can be useful to associate with some identifier in your system. You can set this field when creating a collection link via the API.

On this page