Saafe AA - Docs
HomeSandbox
  • Overview
  • Supported FIPs on Saafe
  • Become an FIU
  • Environment
  • Central Registry
    • Overview
    • Create FIU Entity
    • IAM User Endpoints
      • Generate IAM User Token
      • Secret Management
        • Entity Secret Read
        • Entity Secret Reset
    • Entity Auth Token
    • ❌Entity Auth Token (Deprecated)
    • Central Registry APIs
      • GET AA List
      • GET FIP List
      • GET FIU List
    • Postman Collection
  • FIU Module
    • Introduction
    • AA API v2.0.0
    • FIU API v2.0.0
    • JWS Signature
      • Create JSON Web Key (JWK)
      • Create JWS
      • Verify JWS
    • End-to-end Encryption
  • FIP Module
    • Overview
  • AA Client
    • Web Redirection
Powered by GitBook
On this page
  • Environment
  • API Request

Was this helpful?

  1. Central Registry
  2. Central Registry APIs

GET FIP List

Environment

Environment
CR API BASE URL

Saafe Hackathon

https://api.sandbox.sahamati.org.in/cr

Saafe Sandbox

https://uatcr.sahamati.org.in

API Request

POST {{CR API BASE URL}}/v2/entityInfo/FIP

Gets the list of FIPs registered in the central registry

Headers

Name
Value

Content-Type

application/json

Authorization

Bearer <Entity Auth Token>

Response

[
  {
    "ver": "string",
    "timestamp": "string",
    "txnid": "string",
    "requester": {
      "name": "string",
      "id": "string"
    },
    "entityinfo": {
      "name": "string",
      "id": "string",
      "code": "string",
      "Identifiers": [
        {
          "category": "string",
          "type": "string"
        }
      ],
      "baseurl": "string",
      "fitypes": [
        "string"
      ],
      "certificate": {
        "alg": "string",
        "e": "string",
        "kid": "string",
        "kty": "string",
        "n": "string",
        "use": "string"
      },
      "inboundports": [
        "string"
      ],
      "outboundports": [
        "string"
      ],
      "ips": [
        "string"
      ]
    }
  }
]
PreviousGET AA ListNextGET FIU List

Last updated 7 months ago

Was this helpful?