Quick API reference
The tables below synthesizes, by pseudocode, the entry point for common read/write use case scenarios.
The use case is usually determined by whether you are creating a new SWIFT message or reading an existing SWIFT message. And in the case of reading, different API exists depending on whether you are processing messages generically, or if you are reading specific known type.
Prowide Core API
Use Case | API |
---|---|
Parse a known MT message into a specific message model |
|
Read specific MT message content |
|
Parse unknown MT message into generic swift model |
|
Specialize generic MT message |
|
Load and persist an unknown MT message |
|
Build a new MT message |
|
Write a new MT message to swift string |
|
Write a new MT message to swift file or stream |
|
Check out the Prowide Core code examples at GitHub.
Prowide ISO 20022 API
Use Case | API |
---|---|
Parse a known MX message into a specific message model |
|
Read specific MX message content |
|
Parse unknown MX message |
|
Specialize generic MX message |
|
Load and persist an unknown MX message |
|
Build a new MX message |
|
Write a new MX message to swift string |
|
Write a new MX message to swift file or stream |
|
Check out the Prowide Integrator code examples at GitHub.