Integration Guide for Banks
[ENG] Integration Guide for Bank
[ENG] Integration Guide for Bank
  • General
    • 💰Overview
      • Transfers between digitized entities
        • Option 1. Fast transfer
        • Option 2. Standard transfer (optional)
      • Version history
      • API change log
      • Glossary
    • 🌐Common requirements
    • 👉Basic use case
    • 📅Integration Plan
      • Integration Plan - Business
      • Integration Plan - Technical Team
      • Multisignature
    • ❗Error messages
  • 🛠️API methods
    • Authentification
      • Authorization via JWT
      • Bank authorization
      • JWT format
    • Emlpoyee
      • How to add a user to a role
      • Role management
    • Customer
      • Segments
    • Digital entity
    • Identifiers
    • Transfer
      • Multisignature for transfers
      • [optional] Callbacks
      • Category
    • Limits
    • Reconciliation
    • [optional] Branch
      • Branch access
      • How to add employee to branch
      • Filter by branch
      • Transfers (branches)
      • Branch digital entity
Powered by GitBook
On this page
  1. API methods
  2. Customer

Segments

PreviousCustomerNextDigital entity

Last updated 1 year ago

Get entity types by segments

Segments define the account types available for customers within a counterparty.

Update segment

A user is capable to change the name of the segment.

🛠️

Get account types by segment

get

Get account types by segment

Path parameters
counterparty_guidstringRequired

Counterparty GUID

Query parameters
segment_namesstring[]Optional

segment names (string)

Responses
200
OK
application/json
400
json with error msg
application/json
get
GET /api/v1/counterparty/{counterparty_guid}/segments HTTP/1.1
Host: your_host
Accept: */*
[
  {
    "counterparty": {
      "guid": "text",
      "name": "text"
    },
    "segments": {
      "ANY_ADDITIONAL_PROPERTY": [
        {
          "account_type_guid": "text",
          "asset_code": "text",
          "asset_issuer": "text",
          "counterparty_guid": "text",
          "kind": "processing",
          "segment_name": "text"
        }
      ]
    }
  }
]
  • Get entity types by segments
  • GETGet account types by segment
  • Update segment
  • PATCHUpdate account types segment

Update account types segment

patch

Update account types segment

Path parameters
counterparty_guidstringRequired

Counterparty GUID

Body
account_type_guidstringOptional
segment_namestringOptional
Responses
200
OK
application/json
Responseobject
400
json with error msg
application/json
patch
PATCH /api/v1/counterparty/{counterparty_guid}/segments HTTP/1.1
Host: your_host
Content-Type: application/json
Accept: */*
Content-Length: 50

{
  "account_type_guid": "text",
  "segment_name": "text"
}
{}