The purpose of this message is for the sender gateway as the client to initiate an asset transfer session with the receiver gateway as the server.¶
The client transmits a proposal message that carries the claim related to the asset to be transferred. This message must be signed by the client.¶
This message is sent from the client to the Transfer Initialization Endpoint at the server.¶
The parameters of this message consist of the following:¶
-
version REQUIRED: SAT protocol Version (major, minor).¶
-
messageType REQUIRED: urn:ietf:satp:msgtype:transfer-proposal-msg.¶
-
sessionId REQUIRED: A unique identifier (e.g. UUIDv4) chosen by the
client to identify the current session.¶
-
transferContextId REQUIRED: A unique identifier (e.g. UUIDv4) used to identify
the current transfer session at the application layer.¶
-
transferInitClaim REQUIRED: The set of artifacts and parameters as the basis
for the current transfer.¶
-
transferInitClaimFormat REQUIRED: The format of the transfer initialization claim.¶
-
gatewayAndNetworkCapabilities REQUIRED: The set of origin gateway and network parameters reported by the client to the server.¶
-
clientSignature REQUIRED: The client's signature over the message.¶
Here is an example of the message request body:¶
json
{
"version": "1.0",
"messageType": "urn:ietf:satp:msgtype:transfer-proposal-msg",
"sessionId": "d66a567c-11f2-4729-a0e9-17ce1faf47c1",
"transferContextId": "89e04e71-bba2-4363-933c-262f42ec07a0",
"transferInitClaim": {
"digitalAssetId": "2c949e3c-5edb-4a2c-9ef4-20de64b9960d",
"assetProfileId": "38561",
"verifiedOriginatorEntityId": "CN=Alice, OU=Example Org Unit, O=Example, L=New York, C=US",
"verifiedBeneficiaryEntityId": "CN=Bob, OU=Case Org Unit, O=Case, L=San Francisco, C=US",
"originatorPubkey": "0304b9f34d3898b27f85b3d88fa069a879abe14db5060dde466dd1e4a31ff75e44",
"beneficiaryPubkey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
"senderGatewaySignaturePublicKey": "02a7bc058e1c6f3a79601d046069c9b6d0cb8ea5afc99e6074a5997284756fc9ae",
"receiverGatewaySignaturePublicKey": "0243b12ada6515ada3bf99a7da32e84f00383b5765fd7701528e660449ba5ef260",
"senderGatewayId": "GW1",
"recipientGatewayId": "GW2",
"senderGatewayNetworkId": "1",
"recipientGatewayNetworkId": "43114",
"senderGatewayDeviceIdentityPubkey": "0245785e34b4a7b457dd4683a297ea3d78bab35f8b2583df55d9df8c69604d0e73",
"receiverGatewayDeviceIdentityPubkey": "03763f0bc48ff154cff45ea533a9d8a94349d65a45573e4de6ad6495b6e834312b",
"senderGatewayOwnerId": "CN=GatewayOps, OU=GatewayOps Systems, O=GatewayOps LTD, L=Austin, C=US",
"receiverGatewayOwnerId": "CN=BridgeSolutions, OU=BridgeSolutions Engineering, O=BridgeSolutions LTD, L=Austin, C=US"
},
"transferInitClaimFormat": "TRANSFER_INIT_CLAIM_FORMAT_1",
"gatewayAndNetworkCapabilities": {
"gatewayDefaultSignatureAlgorithm": "ECDSA",
"gatewaySupportedSignatureAlgorithms": ["ECDSA", "RSA"],
"networkLockType": "HASH_TIME_LOCK",
"networkLockExpirationTime": 120,
"gatewayCredentialProfile": "OAUTH",
"gatewayLoggingProfile": "LOCAL_STORE",
"gatewayAccessControlProfile": "RBAC"
},
"clientSignature": "428848dcc8bf7d2a9aa81a06a2a316f0b0b5e65eb7e1af9aa36a7028414b88ec584375281508254be946e32da6edbea6b4c794cd50c830753f9b134def087470de4df82000094000000004f564c2054657374204d657373616765c001a0ff92315970206155d9ffa29deb57d71b4aa51ebd9bbe1e8033df54522035303c323b869475d4e7549304f88883a"
}
¶