Pular para o conteúdo

Get registered participants

Returns the list of financial institutions registered and enabled to operate payments under your ITP. Use OrganisationId and AuthorisationServerId when you Create enrollment for the JSR flow.

GET/api/v1/open-integration/participants/registered

Get registered participants

Returns the institutions registered and enabled for payment operation under the caller subtenant.

Auth: Bearer Token
curl --request GET \
  --url 'https://embedded-payment-manager.hml.linaob.com.br/api/v1/open-integration/participants/registered' \
  --header 'Authorization: Bearer <SEU_TOKEN>'

Response

200Registered participants returned successfully.
Response body
object
  • dataarray of objectsrequired

    List of participants.

    • itemobject
  • messagestring

    Response message.

  • typestring

    Response type. One of `error`, `warning`, `info`, `success`.

  • statusCodeinteger· nullable

    HTTP status code carried inside the envelope.

200 · Registered participants returned successfully.
{
  "data": [
    {
      "OrganisationName": "Open Banking Brasil",
      "OrganisationId": "74e929d9-33b6-4d85-8ba7-c146c867a817",
      "LegalEntityName": "Raidiam Services Ltd",
      "RegistrationNumber": "43142666000197",
      "ParentOrganisationReference": "43142666000197",
      "AuthorisationServers": [
        {
          "AuthorisationServerId": "c8f0bf49-4744-4933-8960-7add6e590841",
          "CustomerFriendlyName": "Mock Bank",
          "CustomerFriendlyDescription": "Mock Bank by Raidiam",
          "CustomerFriendlyLogoUri": "https://cdn.raidiam.io/directory-ui/brand/obbrazil/0.2.0.112/favicon.svg",
          "OpenIDDiscoveryDocument": "https://auth.mockbank.poc.raidiam.io/.well-known/openid-configuration",
          "Flags": {
            "Suporta Contas PF": [
              "Suporta Contas PF"
            ]
          },
          "blockeds": [
            "PIX_INSTANT"
          ],
          "ApiResources": [
            {
              "ApiFamilyType": "payments-pix",
              "ApiVersion": "5.0.0",
              "ApiDiscoveryEndpoints": [
                "https://matls-api.mockbank.poc.raidiam.io/open-banking/payments/v5/pix/payments"
              ],
              "Status": "Active"
            },
            {
              "ApiFamilyType": "enrollments",
              "ApiVersion": "2.2.0",
              "ApiDiscoveryEndpoints": [
                "https://matls-api.mockbank.poc.raidiam.io/open-banking/enrollments/v2/enrollments"
              ],
              "Status": "Active"
            }
          ]
        }
      ]
    }
  ],
  "message": "",
  "type": "success",
  "statusCode": null
}

Next steps