For the complete documentation index, see llms.txt. This page is also available as Markdown.

Receive Counterparty

Webhook respond body:

{
  //Unique Event ID
  "hook_id": "string",
  //Webhook Type
  "hook_type": int,
  "Data": {
    "Counterparty": {
      "suid" : "string",
      "cuid" : "string",
      "description" : "string",
      "accounts" : [
        {
          "suid" : "string",
          "currency_iso" : "string",
          "status" : int
        }
      ]
    }
  }
}

Statuses#

  • NEW = 0 : Flow status: Created new

  • MODERATION = 1 : Flow status: In moderation on manager

  • MODERATED = 2 : Flow status: Moderated success

  • PROGRESS = 6 : Flow status: Counterparty account is progress state

  • ACCEPT = 3 : Result status : Counterparty accepted

  • REJECT = 4 : Result status : Counterparty rejected

  • BANNED = 5 : Result status : Counterparty canceled (banned)

Last updated