Welcome to Labs

📘

Template: Delete this callout and edit this page with your content and links.


Recent Releases


The Basics

sequenceDiagram
    autonumber
    participant PB as Partner Backend
    participant RA as Ramp API
    participant UMS as UMS (admin-be)
    participant SS as Sumsub

    PB->>RA: POST /customer/create
    RA->>UMS: POST /ums/party/add
    UMS->>SS: Create applicant
    SS-->>UMS: sumsubLink
    RA-->>PB: { id, PENDING, sumsubLink }
    
    Note over PB,SS: embed sumsubLink
    
    SS-->>UMS: KYC result
    Note over UMS: (update status + insert<br/>callback_events row)
    
    Note over RA: [setiap 1 menit - CRON]
    RA->>UMS: read callback_events
    RA->>UMS: GET /ums/party/detail
    RA->>PB: POST /webhook<br/>{ event: CUSTOMER_APPROVED, payload: {...} }
    PB-->>RA: 200 OK