Asset Migrated

This event occurs when an asset is migrated.

Type: object
Domain: assets
Event: asset_migrate
Version: 1

|
asset_id required

Title: Asset ID
Description: Unique asset identifier defined by client. This is part of the asset identifier on the Pismo platform. It can be used to make redemptions and cancellations.
Type: string
Example:
d0855c6b-b037-4dce-94c5-7a6ffc1800a3

issuer_id required

Title: Issuer ID
Description: Cetip code of registrator of asset. This is part of the asset identifier on the Pismo platform. It needs to be in every API call. An organization can have multiple issuer IDs.
Type: string
Example:
12345678

external_id

Title: External ID
Description: External identifier for operation. Optional field provided by customer in asset migration operation.
Type: string
Example:
00000000013

ticker_symbol required

Title: Ticker Symbol
Description: External ticker symbol. Field provided by external service.
Type: string
Example:
00000000013

operation_code required

Title: Operation Code
Description: External operation code. Field provided by external service.
Type: string
Example:
00000000013

created_at required

Title: Created date
Description: Creation date of asset migrate operation on Pismo platform
Type: string
Format: date-time
Example:
2020-02-02T17:12:40Z

{
    "$schema": "http://json-schema.org/draft-07/schema#",
    "type": "object",
    "title": "Asset Migrated",
    "description": "This event occurs when an asset is migrated.",
    "required": [
        "asset_id",
        "issuer_id",
        "ticker_symbol",
        "operation_code",
        "created_at"
    ],
    "properties": {
        "asset_id": {
            "type": "string",
            "title": "Asset ID",
            "description": "Unique asset identifier defined by client. This is part of the asset identifier on the Pismo platform. It can be used to make redemptions and cancellations.",
            "examples": [
                "d0855c6b-b037-4dce-94c5-7a6ffc1800a3"
            ]
        },
        "issuer_id": {
            "type": "string",
            "title": "Issuer ID",
            "description": "Cetip code of registrator of asset. This is part of the asset identifier on the Pismo platform. It needs to be in every API call. An organization can have multiple issuer IDs.",
            "examples": [
                "12345678"
            ]
        },
        "external_id": {
            "type": "string",
            "title": "External ID",
            "description": "External identifier for operation. Optional field provided by customer in asset migration operation.",
            "examples": [
                "00000000013"
            ]
        },
        "ticker_symbol": {
            "type": "string",
            "title": "Ticker Symbol",
            "description": "External ticker symbol. Field provided by external service.",
            "examples": [
                "00000000013"
            ]
        },
        "operation_code": {
            "type": "string",
            "title": "Operation Code",
            "description": "External operation code. Field provided by external service.",
            "examples": [
                "00000000013"
            ]
        },
        "created_at": {
            "type": "string",
            "title": "Created date",
            "description": "Creation date of asset migrate operation on Pismo platform",
            "format": "date-time",
            "examples": [
                "2020-02-02T17:12:40Z"
            ]
        }
    }
}
{
    "asset_id": "d0855c6b-b037-4dce-94c5-7a6ffc1800a3",
    "issuer_id": "12345678",
    "external_id": "00000000013",
    "ticker_symbol": "00000000013",
    "operation_code": "00000000013",
    "created_at": "2020-02-02T17:12:40Z"
}