Skip to content

Sequences ‐ Verify LEI is Active

jcadam14 edited this page Mar 6, 2024 · 3 revisions

Verify LEI is Active

---
title: Verify Active LEI 
---
sequenceDiagram
      actor Client
      filing_api->>user-fi-api: GET /v1/institutions/{lei}
      user-fi-api-->>filing_api: FinancialInstitutionWithRelationsDto
      filing_api->>FinancialInstitutionWithRelationsDto: get is_active
      alt if not is_active
      filing_api-->>Client: 403_FORBIDDEN
      end