Providing you have suitable access control permissions, you can create a corporate action source.
You can then subscribe one or more transaction portfolios to the source, and upload corporate actions to it.
- Method 1: Using the LUSID API
- Method 2: Using the LUSID web app
- Method 3: Using Luminesce
Using the LUSID API
- Obtain an API access token.
- Call the CreateCorporateActionSource API, specifying:
- A
scope
andcode
that together uniquely identify the source (the latter must be unique within the former). - A meaningful
displayName
. - A single instrument scope in the
instrumentScopes
field if the transaction portfolio(s) you intend to register resolve economic activity to instruments mastered in that scope. If all intended transaction portfolios resolve to instruments mastered in thedefault
scope, you can omit this field.
For example:
curl -X POST 'https://<your-domain>.lusid.com/api/api/corporateactionsources' -H 'Content-Type: application/json-patch+json' -H 'Authorization: Bearer <your-API-access-token>' -d '{ "scope": "Example-CAS-scope", "code": "Example-CAS-code", "displayName": "Example corporate action source", "description": "This is an example corporate action source", "instrumentScopes": ["example-instrument-scope"] }'
- A
Using the LUSID web app
Coming soon