Retrieve Webhook

Introduction

We will notify you on each incoming payment to a Proxy Wallet and when of assets transferred to your Omnibus accounts (Forwarding webhooks).

Setup

You can set your server URL on the notifications page to receive webhooks:

Webhook payload

In order to authorize Curra notifications, like incoming payments notifications, you should compare webhook request's X-API-KEY header with your API key.

Method: POST

Headers:

  • content-type: application/json

  • x-api-key: your_api_key

GET https://yourwebsite.com/curra/incoming-payment-hook

Body:

Key
Type
Description

id

string*

unique identifier

toAddress

value: string* uniqueId: string* meta: string

value – receive address uniqueId - uniqueId provided on address creation, generated if not provided meta – meta provided on address creation

fromAddress

string*

sender address

valueUnits

string*

payment amount in units

value

string*

payment amount in decimal format

blockchain

string*

available values at "API value" column here

block

number*

block number in which payment was mined

txHash

string*

trasaction hash

confirmations

number*

blockchain confirmations count

assetId

string*

asset id of a payment

status

string* "pending" or "success"

pending – payment is not confirmed yet success - payment confirmed on the address

subStatus

string*

blockchain-specific status, can be used in informational purposes

statusDescription

string*

human-readable description of status field

Examples:

You will receive notification on each "confirmations" field update

Last updated