Web hook

The web hook posts the result of a transaction, refund, recurring payment to your server. Please review profile to configure your web hook URL. The JSON body looks like follows:

Transaction

POST your.site/web-hook-url
{
    "transaction_id": "fumo transaction code",
    "timestamp": "UTC request timestamp",
    "reference": "Your internal reference",
    "result": "1",
    "result_text": "ok",
    "type": "transaction",
    "signature": "Signed fields"
}

Field descriptions

fieldusage
transaction_idThis is the fumo transaction code
timestampUTC Timestamp in the RFC 3339/ISO 8601 format 2024-03-15T08:15:27Z
referenceYour reference for the transaction
resultThe result of the call. Please see status codes
result_textThe result of the call but as a string. Please see status codes
typeThis will be transaction
signatureThe signed request which is detailed below

Request signing

The signature is the concatenation of certain fields which is then given a SHA512 hash which is finally base64 encoded. In pseudo code as follows:

strToHash = transaction_id + reference + result + profile_key + secret_key + timestamp
hash = sha512(strToHash)
signature = base64.encode(hash)

The profile and secret keys are from the profile that you are using.

Response

If your server responds to the above request with a HTTP status 200 or 201 we will see the transaction notification as completed. Any other status we will retry 5 times.

Refund

POST your.site/web-hook-url
{
    "refund_id": "fumo refund code",
    "timestamp": "UTC request timestamp",
    "reference": "Your internal reference",
    "result": "1",
    "result_text": "ok",
    "type": "refund",
    "signature": "Signed fields"
}

Field descriptions

fieldusage
refund_idThis is the fumo refund code
timestampUTC Timestamp in the RFC 3339/ISO 8601 format 2024-03-15T08:15:27Z
referenceYour reference for the refund
resultThe result of the call. Please see status codes
result_textThe result of the call but as a string. Please see status codes
typeThis will be refund
signatureThe signed request which is detailed below

Request signing

The signature is the concatenation of certain fields which is then given a SHA512 hash which is finally base64 encoded. In pseudo code as follows:

strToHash = refund_id + reference + result + profile_key + secret_key + timestamp
hash = sha512(strToHash)
signature = base64.encode(hash)

The profile and secret keys are from the profile that you are using.

Response

If your server responds to the above request with a HTTP status 200 or 201 we will see the refund notification as completed. Any other status we will retry 5 times.

Recurring Payment

POST your.site/web-hook-url
{
    "subscription_id": "fumo subscription code",
    "transaction_id": "fumo transaction code",
    "timestamp": "UTC request timestamp",
    "reference": "Your internal reference",
    "result": "1",
    "result_text": "ok",
    "type": "recurring",
    "count": 3,
    "payment": {
        "id": "subscription payment code",
        "amount": 100,
        "number": 1,
    },
    "signature": "Signed fields"
}

Field descriptions

fieldusage
subscription_idThis is the fumo subscription code and should be used to track all subsequent payment notifications.
transaction_idThis is the fumo transaction code. This will match the code of the transaction when created and will always be present on the first notification.
timestampUTC Timestamp in the RFC 3339/ISO 8601 format 2024-03-15T08:15:27Z
referenceYour reference for the recurring payment
resultThe result of the call. Please see status codes
result_textThe result of the call but as a string. Please see status codes
typeThis will be recurring
countIf known the number of payments in the subscription
paymentIf there is a payment associated with this notification this will be present
payment.idThe subscription payment code
payment.amountThe amount that was paid for this payment
payment.numberThe index number of the payment. This starts from 1.
signatureThe signed request which is detailed below

Request signing

The signature is the concatenation of certain fields which is then given a SHA512 hash which is finally base64 encoded. In pseudo code as follows:

strToHash = subscription_id + reference + result + profile_key + secret_key + timestamp
hash = sha512(strToHash)
signature = base64.encode(hash)

The profile and secret keys are from the profile that you are using.

Response

If your server responds to the above request with a HTTP status 200 or 201 we will see the recurring payment notification as completed. Any other status we will retry 5 times.

Note on recurring payments

There are different methods for creating a recurring payment from our side. The main notification line is that when the instructions have been set up we will send a notification without a payment object with a 14 (scheduled) result. Then subsequent notifications should contain the individual payments with a result of 11 (paid).

In the case where we had to take the payment at the same time as the instruction set up we will respond with a 11 (paid) result and the payment object will be populated.