All pages
Powered by GitBook
1 of 6

Loading...

Loading...

Loading...

Loading...

Loading...

Loading...

AM/FA - Create Batch NAV Unitized

Details

/external/v1/nav-reporting/batch-create

Synopsis

AM/FA - Update NAV Unitized

Details

Synopsis

NAV Reporting

Net asset value (NAV) records provide the per-share market values by date for fund share classes.

Endpoints

The following list summarizes the primary endpoints required to support the NAV reporting life cycle:

Getters

AM/FA - Delete NAV Unitized

Details

Synopsis

Create Batch NAV Unitized
Update NAV Unitized
Delete NAV Unitized
Get NAV Time Series
Get NAV Time Series History
/external/v1/nav-reporting/batch-update
/external/v1/nav-reporting/batch-delete

AM/FA - Get NAV Time Series

Details

/external/v1/nav-reporting

Synopsis

AM/FA - Get NAV Time Series History

Details

/external/v1/nav-reporting/history

Synopsis

Create batch NAV Unitized

post

This route is used to trigger the creation of a list of NAV records for unitized instruments on the blockchain for a particular security.

It triggers an asynchronous process that will persist this information on the blockchain, which can be monitored using the "Transactions API" endpoints.

This can be called either by the issuer organization that owns the security or by an assigned fund administrator to update the new price per share.

This endpoint can be invoked if the security is in one of the following statuses: ["active","completed","approved_revert_to_active","closed"].

This endpoint can be invoked by organizations that have at least one of the following roles on this security: ["issuer","service_provider"].

This endpoint can't be invoked if the security is restricted.

This endpoint can't be invoked if the security is share class.

This endpoint can be called by applications with access to scope "manageNAV".

Authorizations
Body
transactionDataall ofRequired

This property contains the transactional data information, i.e. the security id to which all the NAVs in the list belong to

Example: {"securityId":"USS3JKS01I00","signer":{"email":"[email protected]","name":"John Doe"}}
Responses
201
Successfully triggered the process to create a list of NAV records. The "processId" and "orchestrationId" properties can be used on the "Transactions API" to monitor the status of this asynchronous process.
application/json
400
The following error codes can be returned: - GN0002 - IS0008 - IS0003 - NV0005 - NV0007 - NV0014 Please refer to the error code dictionary for the details of each error code.
application/json
401
The following error codes can be returned: - AU0001 - AU0003 Please refer to the error code dictionary for the details of each error code.
application/json
403
The following error codes can be returned: - AU0002 - IS0099 Please refer to the error code dictionary for the details of each error code.
application/json
404
The following error codes can be returned: - IS0009 - NV0007 Please refer to the error code dictionary for the details of each error code.
application/json
409
The following error codes can be returned: - IS0013 - IS0010 - IS0003 - IS0012 - NV0002 Please refer to the error code dictionary for the details of each error code.
application/json
post
POST /external/v1/nav-reporting/batch-create HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 246

{
  "transactionData": {
    "securityId": "USS3JKS01I00",
    "signer": {
      "email": "[email protected]",
      "name": "John Doe"
    }
  },
  "navData": [
    {
      "securityId": "USS3JKS01I00",
      "navRecords": [
        {
          "date": "2024-09-12",
          "price": 10.123456
        },
        {
          "date": "2024-09-13",
          "price": 10.123459
        }
      ]
    }
  ]
}
{
  "processId": "2159457f-0167-4e93-a969-9cf0db05e0bf",
  "orchestrationId": "2159457f-0167-4e93-a969-9cf0db05e0bf"
}

Update NAV Unitized

put

This route is used to trigger the update a list of NAV records for unitized instruments on the blockchain for a particular security.

It triggers an asynchronous process that will persist this information on the blockchain, which can be monitored using the "Transactions API" endpoints.

This can be called either by the issuer organization that owns the security or by an assigned fund administrator to update the new price per share.

This endpoint can be invoked if the security is in one of the following statuses: ["active","completed","approved_revert_to_active","closed"].

This endpoint can be invoked by organizations that have at least one of the following roles on this security: ["issuer","service_provider"].

This endpoint can't be invoked if the security is restricted.

This endpoint can be called by applications with access to scope "manageNAV".

Authorizations
Body
transactionDataall ofRequired

This property contains the transactional data information, i.e. the security id to which all the NAVs in the list belong to

Example: {"securityId":"USS3JKS01I00","signer":{"email":"[email protected]","name":"John Doe"}}
Responses
200
Successfully triggered the process to update a list of NAV records. The "processId" and "orchestrationId" properties can be used on the "Transactions API" to monitor the status of this asynchronous process.
application/json
400
The following error codes can be returned: - GN0002 - IS0008 - IS0003 - NV0014 Please refer to the error code dictionary for the details of each error code.
application/json
401
The following error codes can be returned: - AU0001 - AU0003 Please refer to the error code dictionary for the details of each error code.
application/json
403
The following error codes can be returned: - AU0002 - IS0099 Please refer to the error code dictionary for the details of each error code.
application/json
404
The following error codes can be returned: - IS0009 - NV0004 Please refer to the error code dictionary for the details of each error code.
application/json
409
The following error codes can be returned: - IS0013 - IS0012 - NV0006 Please refer to the error code dictionary for the details of each error code.
application/json
put
PUT /external/v1/nav-reporting/batch-update HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 246

{
  "transactionData": {
    "securityId": "USS3JKS01I00",
    "signer": {
      "email": "[email protected]",
      "name": "John Doe"
    }
  },
  "navData": [
    {
      "securityId": "USS3JKS01I00",
      "navRecords": [
        {
          "date": "2024-09-12",
          "price": 10.123456
        },
        {
          "date": "2024-09-13",
          "price": 10.123459
        }
      ]
    }
  ]
}
{
  "processId": "2159457f-0167-4e93-a969-9cf0db05e0bf",
  "orchestrationId": "2159457f-0167-4e93-a969-9cf0db05e0bf"
}

Delete NAV Unitized

put

This route is used to trigger delete a list of NAV records for unitized instruments on the blockchain for a particular security.

It triggers an asynchronous process that will persist this information on the blockchain, which can be monitored using the "Transactions API" endpoints.

This can be called either by the issuer organization that owns the security or by an assigned fund administrator to update the new price per share.

This endpoint can be invoked if the security is in one of the following statuses: ["active","completed","approved_revert_to_active","closed"].

This endpoint can be invoked by organizations that have at least one of the following roles on this security: ["issuer","service_provider"].

This endpoint can't be invoked if the security is restricted.

This endpoint can be called by applications with access to scope "manageNAV".

Authorizations
Body
transactionDataall ofRequired

This property contains the transactional data information, i.e. the security id to which all the NAVs in the list belong to

Example: {"securityId":"USS3JKS01I00","signer":{"email":"[email protected]","name":"John Doe"}}
Responses
200
Successfully triggered the process to update a list of NAV records. The "processId" and "orchestrationId" properties can be used on the "Transactions API" to monitor the status of this asynchronous process.
application/json
400
The following error codes can be returned: - GN0002 - IS0008 - IS0003 - NV0014 Please refer to the error code dictionary for the details of each error code.
application/json
401
The following error codes can be returned: - AU0001 - AU0003 Please refer to the error code dictionary for the details of each error code.
application/json
403
The following error codes can be returned: - AU0002 - IS0099 Please refer to the error code dictionary for the details of each error code.
application/json
404
The following error codes can be returned: - IS0009 - NV0004 Please refer to the error code dictionary for the details of each error code.
application/json
409
The following error codes can be returned: - IS0013 - IS0012 - NV0006 Please refer to the error code dictionary for the details of each error code.
application/json
put
PUT /external/v1/nav-reporting/batch-delete HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 192

{
  "transactionData": {
    "securityId": "USS3JKS01I00",
    "signer": {
      "email": "[email protected]",
      "name": "John Doe"
    }
  },
  "navData": [
    {
      "securityId": "USS3JKS01I00",
      "timestamps": [
        "2024-09-13",
        "2024-09-15"
      ]
    }
  ]
}
{
  "processId": "2159457f-0167-4e93-a969-9cf0db05e0bf",
  "orchestrationId": "2159457f-0167-4e93-a969-9cf0db05e0bf"
}

Get Nav Time Series

get

This route is used to retrieve active nav(s) given a set of filters such as security identifiers or date range.

This endpoint returns paginated data. Up to 500 can be extracted per call.

This endpoint can be called by applications with access to scope "readNAV".

Authorizations
Query parameters
pageSizenumberOptional

The number of rows being retrieved. Must be a positive integer.

offsetnumberOptional

The offset (i.e. row start index). Must be a positive integer (or 0).

fromDatestring · date-timeOptional

The start date from which the nav records are to be retrieved.

toDatestring · date-timeOptional

The end date until which the nav records are to be retrieved.

securityIdsFilterstringOptional

The comma delimited list of security ids to filter the nav records. Up to 10 records can be provided. Each record should not exceed 12 characters.

Example: USCCWSF01I00,USCCWSF01I01
securityCorrelationIdsFilterstringOptional

The comma delimited list of security correlation ids to filter the nav records. Up to 10 records can be provided. Each record should not exceed 100 characters.

Example: 1234,5678,7890
securityCorrelationOrgIdstring · max: 12Optional

The organization identifier linked to the correlation ids provided in the "securityCorrelationIdsFilter" property. If not provided the organization id will be inferred from the access token.

Responses
200
Successfully retrieved the NAV details
application/json
400
The following error codes can be returned: - GN0002 - GN0004 - GN0005 Please refer to the error code dictionary for the details of each error code.
application/json
401
The following error codes can be returned: - AU0001 Please refer to the error code dictionary for the details of each error code.
application/json
403
The following error codes can be returned: - AU0002 Please refer to the error code dictionary for the details of each error code.
application/json
get
GET /external/v1/nav-reporting HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "price": 100,
    "timestamp": "2024-09-12",
    "status": "published",
    "securityId": "USS3JKS01I00"
  }
]

Get Nav Time Series History

get

This route is used to retrieve the history data entries of nav(s) given a set of filters such as blockchain details or security identifiers.

The history entries will reflect the state of the nav(s) on a particular block on the ledger.

This endpoint returns paginated data. Up to 500 can be extracted per call.

This endpoint can be called by applications with access to scope "readNAV".

Authorizations
Query parameters
pageSizenumberOptional

The number of rows being retrieved. Must be a positive integer.

offsetnumberOptional

The offset (i.e. row start index). Must be a positive integer (or 0).

blockNumbernumber · max: 2147483647Optional

The block number where the action was recorded on the ledger.

Example: 350
transactionIdstring · max: 500Optional

The transaction id where the action was recorded on the ledger.

Example: 456789OIJHGFCVGHJKLKJHGF67JHPattern: ^[a-zA-Z0-9-]*$
channelNamestring · max: 20Optional

The name of the channel where the action was recorded on the ledger.

Example: OG123Pattern: ^[a-zA-Z0-9-]*$
securityIdsFilterstringOptional

The comma delimited list of security ids to filter the nav records. Up to 10 records can be provided. Each record should not exceed 12 characters.

Example: USCCWSF01I00,USCCWSF01I01
securityCorrelationIdsFilterstringOptional

The comma delimited list of security correlation ids to filter the nav records. Up to 10 records can be provided. Each record should not exceed 100 characters.

Example: 1234,5678,7890
securityCorrelationOrgIdstring · max: 12Optional

The organization identifier linked to the correlation ids provided in the "securityCorrelationIdsFilter" property. If not provided the organization id will be inferred from the access token.

Responses
200
Successfully retrieved the NAV history details
application/json
400
The following error codes can be returned: - GN0002 - GN0004 - GN0005 Please refer to the error code dictionary for the details of each error code.
application/json
401
The following error codes can be returned: - AU0001 Please refer to the error code dictionary for the details of each error code.
application/json
403
The following error codes can be returned: - AU0002 Please refer to the error code dictionary for the details of each error code.
application/json
get
GET /external/v1/nav-reporting/history HTTP/1.1
Host: 
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
[
  {
    "securityId": "USS3JKS01I00",
    "timestamp": "2024-09-12",
    "organization": {
      "orgId": "TEST1234",
      "name": "Test Organization"
    },
    "update": {
      "status": "published",
      "price": 100,
      "timestamp": "2023-02-27"
    },
    "event": "Created",
    "blockNumber": 350,
    "transactionId": "456789OIJHGFCVGHJKLKJHGF67JH",
    "channelName": "OG123",
    "extraData": {
      "externalId": "123456789",
      "some": "Custom Property"
    },
    "signerData": {
      "email": "[email protected]",
      "name": "John Doe",
      "id": "[email protected]_TEST1234"
    }
  }
]