AM/FA/Inv - Get Organization Details
Details
Synopsis
This route is used to retrieve the details of an organization given a set of filters such as organization identifiers or organization type.
This endpoint returns paginated data. Up to 50 can be extracted per call.
This endpoint can be called by applications with access to scope "readOrgs".
The number of rows being retrieved. Must be a positive integer.
The offset (i.e. row start index). Must be a positive integer (or 0).
The comma delimited list of organization ids to filter the organization records. Each record should not exceed 12 characters.
USCCWSF01I00,USCCWSF01I01
The comma delimited list of statuses to filter the organization records. Up to 5 entries can be provided.
Available values: failed_creation, added, ready, suspended, removed
ready,added
The comma delimited list of types to filter the organization records. Up to 5 entries can be provided.
Available values: issuer, investor, asset_manager, administrator, fund_admin
investor,fund_admin
The comma delimited list of organization correlation ids to filter the organization records. Up to 25 records can be provided. Each record should not exceed 100 characters.
1234,5678,7890
The organization identifier linked to the correlation ids provided in the "orgCorrelationIdsFilter" property. If not provided the organization id will be inferred from the access token.
GET /external/v1/org HTTP/1.1
Host:
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
{
"extraData": {
"externalId": "123456789",
"some": "Custom Property"
},
"name": "Bank Name",
"outboundAddressList": [
{
"ip": "127.0.0.1",
"address": "outbound.atorg.com"
}
],
"integrationApiAddress": "https://integration-api.atorg.com",
"type": "investor",
"status": "added",
"locked": false,
"peers": [
{
"key": "peer01",
"domainName": "peer123.atorg.com",
"requestPort": 65535,
"eventPort": 65534
}
],
"orderers": [
{
"key": "orderer01",
"domainName": "orderer123.atorg.com",
"requestPort": 65535,
"adminPort": 65534,
"healthCheckPort": 65533
}
],
"orgACL": [
"US9QIMA",
"US9QIMB"
],
"createdDate": "2024-09-12T00:00:00.000Z",
"updatedDate": "2024-09-12T00:00:00.000Z",
"orgId": "US9QIMA",
"whitelisted": false,
"correlationData": [
{
"correlationId": "org717",
"origin": "Identifies organization on backoffice",
"organization": {
"name": "Test Organization",
"orgId": "TEST1234"
},
"extraData": {
"some": "Custom Property"
}
}
]
}
]
Last updated
Was this helpful?