Messaging Documentation
API Docs
  • Introduction
  • Getting started
    • Transitioning from v2 to v4
  • Message structure
    • Entity messages
      • Message group
      • Action
      • Example messages
    • Configuration messages
      • Message group
      • Action
      • Example messages
    • Financial messages
      • Message group
      • Action
      • Example messages
    • Batch Messages
      • Message group
      • Action
      • Example messages
  • Sample projects
  • Message metrics
  • FAQ
  • SQS - Queues
    • Overview
    • Setting up an SQS message integration
    • SQS queue names
  • SNS - PUB/SUB
    • Overview
    • Setting up an SNS message integration
    • SNS topic names
    • Message attributes
  • 🆕EventBridge
    • Overview
    • Setting up an EventBridge integration
Powered by GitBook
On this page
  • Currency Pairs
  • Currency Pair Created
  • Currency Pair Updated
  • Currency Pair Deleted

Was this helpful?

  1. Message structure
  2. Financial messages

Example messages

Examples of messages that will be published.

Currency Pairs

Currency Pair Created

{
    "conversionId": 4972,
    "currencyConversionId": "00000000-0000-0000-0000-000000000000",
    "toCurrency": "USD",
    "fromCurrency": "AUD",
    "rate": 1.110000000,
    "effectiveDate": "2023-04-04T00:00:00Z",
    "conversionType": {
        "conversionTypeId": 0,
        "conversionTypeName": "Transaction To Company"
    },
    "rateSource": {
        "rateSourceId": 5,
        "rateSourceName": "Default"
    },
    "isLocked": false,
    "createdById": 124523,
    "createdDate": "2023-04-17T21:06:05.357Z",
    "lastUpdatedById": 124523,
    "lastUpdatedDate": "2023-04-17T21:06:05.357Z"
}

Currency Pair Updated

{
    "conversionId": 4972,
    "currencyConversionId": "00000000-0000-0000-0000-000000000000",
    "toCurrency": "USD",
    "fromCurrency": "AUD",
    "rate": 1.112000000,
    "effectiveDate": "2023-04-04T00:00:00Z",
    "conversionType": {
        "conversionTypeId": 0,
        "conversionTypeName": "Transaction To Company"
    },
    "rateSource": {
        "rateSourceId": 5,
        "rateSourceName": "Default"
    },
    "isLocked": false,
    "createdById": 124523,
    "createdDate": "2023-04-17T21:06:05.357Z",
    "lastUpdatedById": 124523,
    "lastUpdatedDate": "2023-04-18T16:41:38.413Z"
}

Currency Pair Deleted

{
 "conversionId": 4972,
    "currencyConversionId": "00000000-0000-0000-0000-000000000000",
    "toCurrency": "USD",
    "fromCurrency": "AUD",
    "rate": 1.112000000,
    "effectiveDate": "2023-04-04T00:00:00Z",
    "conversionType": {
        "conversionTypeId": 0,
        "conversionTypeName": "Transaction To Company"
    },
    "rateSource": {
        "rateSourceId": 5,
        "rateSourceName": "Default"
    },
    "isLocked": false,
    "createdById": 124523,
    "createdDate": "2023-04-17T21:06:05.357Z",
    "lastUpdatedById": 124523,
    "lastUpdatedDate": "2023-04-18T16:41:38.413Z",
    "deletedById": 124523,
    "deletedDate": "2023-04-18T16:44:57.307Z"
}
PreviousActionNextBatch Messages

Last updated 1 year ago

Was this helpful?