About Use Сase Scenarios
The GSMA Simulator for the Mobile Money API is a simulated API implementation developed by the GSMA to facilitate API adoption and testing, thereby decreasing implementation effort and time to market for Mobile Money Providers and ecosystem Service Providers. Developers can navigate through Use Case Scenarios providing access to a set of pre-defined Postman Collections for the Simulator to try out some of the most common mobile money API use cases, or directly access the OAS interface for the API Specification and use the API Try It Out functionality from there.
P2P Transfer via Switch
In this diagram, a switch is used by the sending FSP to (1) confirm the recipient name, (2) request a quotation and and to(3) perform the transfer with the receiving FSP. A callback is provided by the receiving FSP to return confirmation of the transfer.
sequenceDiagram
participant Sending FSP
participant Switch
participant Receiving FSP
Sending FSP->>Switch: GET /accounts/{identifierType}/{identifier}accountname
activate Sending FSP
activate Switch
activate Receiving FSP
Note right of Switch: (1) The Sending FSP retrieves the name of theintended
recipient from the Receiving FSP via the Switch.
Switch->>Receiving FSP: GET /accounts/{identifierType}/{identifier}accountname
Receiving FSP-->>Switch: HTTP 200 (Account Holder Name Object)
Switch-->>Sending FSP: HTTP 200 (Account Holder Name Object)
deactivate Sending FSP
deactivate Switch
deactivate Receiving FSP
Sending FSP->>Switch: POST /quotations
activate Sending FSP
activate Switch
activate Receiving FSP
Note right of Switch: (2) Subject to sender confirmation of the namereturned in step 1, the Sending FSP
submits a quotation request tothe Switch. The Switch will return the Request
State object toindicate that the request is 'pending'.
Switch->>Receiving FSP: POST /quotations
Note right of Receiving FSP: (3) The Swith in turn submits thequotation request to the
Receiving FSP. The Receiving FSP willreturn the
Request State object to indicate that the requestis
'pending'.
Receiving FSP-->>Switch: HTTP 202 (Request State Object)
Switch-->>Sending FSP: HTTP 202 (Request State Object)
deactivate Sending FSP
deactivate Switch
Receiving FSP->>Switch: PUT {Callback URL} (Quotations Object)
activate Switch
activate Sending FSP
Note right of Receiving FSP: (4) The FSP informs the Switch that thequotation
has been successfully created by returning the
finalrepresentation of the quotation.
Switch-->>Receiving FSP: HTTP 204
deactivate Receiving FSP
Switch->>Sending FSP: PUT {Callback URL} (Quotations Object)
Note right of Switch: (5) The Swith in turn informs the Sending FSPthat the quotation
has successfully created by returning the finalrepresentation
of the quotation.
Sending FSP-->>Switch: HTTP 204
deactivate Switch
deactivate Sending FSP
Sending FSP->>Switch: POST /transactions/type/transfer
activate Switch
activate Sending FSP
activate Receiving FSP
Note right of Switch: (6) Subject to sender confirmation, the SendingFSP submits a transfer
request to the Swith. The Switch will returnthe Request State object to
indicate that the request is 'pending'.
Switch->>Receiving FSP: POST /transactions/type/transfer
Note right of Receiving FSP: (7) The Switch in turn submits thetransaction request to the
Receiving FSP. The Receiving FSP willreturn the
Request State object to indicate that the requestis
'pending'.
Receiving FSP-->>Switch: HTTP 202 (Request State Object)
Switch-->>Sending FSP: HTTP 202 (Request State Object)
deactivate Switch
deactivate Sending FSP
Receiving FSP->>Switch: PUT {Callback URL} (Transactions Object)
activate Switch
activate Sending FSP
Note right of Receiving FSP: (8) The FSP informs the Switch thatthe
transaction has been successfully completed
by returning thefinal representation of the
transaction.
Switch-->>Receiving FSP: HTTP 204
deactivate Receiving FSP
Switch->>Sending FSP: PUT {Callback URL} (Transactions Object)
Note right of Switch: (9) The Swith in turn informs the Sending FSPthat the
transaction has been successfully completed
byreturning the final representation of the
transaction.
Sending FSP-->>Switch: HTTP 204
deactivate Switch
deactivate Sending FSP
Bilateral P2P Transfer
In this diagram, the sending FSP connects directly with the receiving FSP to confirm the recipient name and to perform the transfer. A callback is provided by the receiving FSP to return confirmation of the transfer. In this example, a quotation is not requested.
sequenceDiagram
participant Sending FSP
participant Receiving FSP
Sending FSP->>Receiving FSP: GET /accounts/{identifierType}/{identifier}/accountname
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (1) The Sending FSP retrieves the name of the
intended recipient from the Receiving FSP.
Receiving FSP-->>Sending FSP: HTTP 200 (Account Holder Name Object)
deactivate Receiving FSP
Sending FSP->>Receiving FSP: POST /transactions/type/transfer
activate Receiving FSP
Note right of Receiving FSP: (2) Subject to sender confirmation, the Sending FSP
submits a transfer request. The Receiving FSP will
return the Request State object to indicate that the
request is "pending".
Receiving FSP-->>Sending FSP: HTTP 202 (Request State Object)
deactivate Sending FSP
deactivate Receiving FSP
Receiving FSP->>Sending FSP: PUT {Callback URL} (Transaction Object)
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (3) The FSP in turn informs the Sending FSP that the
transation has been succesfully completed by
returning the final representation of the transaction.
Sending FSP-->>Receiving FSP: HTTP 204
deactivate Sending FSP
deactivate Receiving FSP
‘On-us’ P2P Transfer Initiated by a Third Party Provider
In this diagram, A third party provider enables a sender to transfer money to a recipient in the same FSP. The third party provider (1) confirms the recipient name, (2) requests a quotation and (3) performs the transfer with the FSP. A callback is provided by the FSP to return confirmation of the transfer.
sequenceDiagram
participant Third Party Provider
participant FSP
Third Party Provider->>FSP: GET /accounts/{identifierType}/{identifier}/accountname
activate Third Party Provider
activate FSP
Note right of FSP: (1) The Third Party Provider retrieves the name of the
intended recipient from the FSP.
FSP-->>Third Party Provider: HTTP 200 (Account Holder Name Object)
deactivate Third Party Provider
deactivate FSP
Third Party Provider->>FSP: POST /quotations
activate Third Party Provider
activate FSP
Note right of FSP: (2) Subject to sender confirmation, the Third Party Provider
submits a quotation request. The FSP will return the
Request State object to indicate that the request is
'pending'.
Third Party Provider-->>FSP: HTTP 202 (Request State Object)
deactivate Third Party Provider
deactivate FSP
FSP->>Third Party Provider: PUT {Callback URL} (Quotations Object)
activate Third Party Provider
activate FSP
Note right of FSP: (3) The FSP in turn informs the Third Party Provider that
the quotation has been successfully completed by
returning the final representation of the quotation.
Third Party Provider-->>FSP: HTTP 204
deactivate Third Party Provider
deactivate FSP
Third Party Provider->>FSP: POST /transactions/type/transfer
activate Third Party Provider
activate FSP
Note right of FSP: (4) Subject to sender confirmation, the Third Party Provider
submits a transfer request. The FSP will return the
Request State object to indicate that the request is
'pending'.
Third Party Provider-->>FSP: HTTP 202 (Request State Object)
deactivate Third Party Provider
deactivate FSP
FSP->>Third Party Provider: PUT {Callback URL} (Transactions Object)
activate Third Party Provider
activate FSP
Note right of FSP: (5) The FSP in turn informs the Third Party Provider that
the transaction has been successfully completed by
returning the final representation of the transaction.
Third Party Provider-->>FSP: HTTP 204
deactivate Third Party Provider
deactivate FSP
P2P Transfer Failure
In some failure scenarios, a transfer may need to be reversed. This diagram illustrates an reversal with the final result communicated via the callback.
sequenceDiagram
participant Sending FSP
participant Receiving FSP
Sending FSP->>Receiving FSP: GET /accounts/{identifierType}/{identifier}/accountname
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (1) The Sending FSP retrieves the name of the
intended recipient from the Receiving FSP.
Receiving FSP-->>Sending FSP: HTTP 200 (Account Holder Name Object)
deactivate Receiving FSP
Sending FSP->>Receiving FSP: POST /transactions/type/transfer
activate Receiving FSP
Note right of Receiving FSP: (2) Subject to sender confirmation, the Sending FSP
submits a transfer request. The Receiving FSP will
return the Request State object to indicate that the
request is "pending".
Receiving FSP-->>Sending FSP: HTTP 202 (Request State Object)
deactivate Sending FSP
deactivate Receiving FSP
Receiving FSP->>Sending FSP: PUT {Callback URL} (Error Object)
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (3) The FSP in turn informs the Sending FSP that the
transation has been failed by returning an Error
object containing the reason for failure.
Sending FSP-->>Receiving FSP: HTTP 204
deactivate Sending FSP
deactivate Receiving FSP
P2P Transfer Reversal
In some failure scenarios, a transfer may need to be reversed. This diagram illustrates an reversal with the final result communicated via the callback.
sequenceDiagram
participant Sending FSP
participant Receiving FSP
Sending FSP->>Receiving FSP: POST /transactions/{original transaction reference}/reversals
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (1) The Sending FSP submits the reversal request for
processing to the Receiving FSP - passing the reference of
the transaction that is to bve reversed. The Receiving FSP
will return the Request State object to indicate the the
request is "pending".
Receiving FSP-->>Sending FSP: HTTP 202 (Request State Object)
Receiving FSP->>Sending FSP: PUT {Callback URL} (Reversal Object)
Note right of Receiving FSP: (2) The Receiving FSP informs the Sending FSP
that the reversal has been successully
completed by returning the final representation
of the reversal transaction.
Sending FSP-->>Receiving FSP: HTTP 204
deactivate Sending FSP
deactivate Receiving FSP
Obtain an FSP Balance
sequenceDiagram
participant Requesting FSP
participant FSP
Requesting FSP->>FSP: GET /accounts/{identifierType}/{identifier}/balance
activate Requesting FSP
activate FSP
Note right of FSP: (1) Obtain the balance of the
Requesting FSP's account.
FSP-->>Requesting FSP: HTTP 200 (Balance Object)
deactivate Requesting FSP
deactivate FSP
Retrieve Transactions for an FSP
This diagram illustrates use of a cursor mechanism to retrieve all transactions for a sending requesting FSP via multiple requests.
sequenceDiagram
participant Requesting FSP
participant FSP
Requesting FSP->>FSP: GET /accounts/{identifierType}/{identifier}/transactions?offset=0&limit=20
activate Requesting FSP
activate FSP
Note right of FSP: (1) The Requesting FSP requests up to
20 transactions for their account
from the FSP.
FSP-->>Requesting FSP: HTTP 200 (Transactions Array) (X-Records-Available-Count=40)
Note right of FSP: (2) The FSP returns an array of 20
transactions and indicates via a
response header that there are 40
records available in total.
Requesting FSP->>FSP: GET /accounts/{identifierType}/{identifier}/transactions?offset=20&limit=20
Note right of FSP: (3) The Requesting FSP requests the
remaining transactions from the
account from the Receiving FSP.
FSP-->>Requesting FSP: HTTP 200 (Transactions Array) (X-Records-Available-Count=40)
deactivate Requesting FSP
deactivate FSP
Check for Service Availability
The Heartbeat API is used for monitoring purposes and establishes whether the FSP is in a state that enables a client to submit a request for processing.
sequenceDiagram
participant Requesting FSP
participant FSP
Requesting FSP->>FSP: GET /heartbeat
activate Requesting FSP
activate FSP
Note right of FSP: (1) The Requesting FSP requests the
availability of the service from the FSP.
FSP-->>Requesting FSP: HTTP 200 (Heartbeat Object)
Note right of FSP: (2) The FSP returns the availability of
the service - available, unavailable
or degraded.
deactivate Requesting FSP
deactivate FSP
Retrieve a Missing API Response
This API can be used by the sending FSP to retrieve a link to the final representation of the resource for which it attempted to create. Use this API when a callback is not received from the receiving FSP.
sequenceDiagram
participant Sending FSP
participant Receiving FSP
Sending FSP->>Receiving FSP: GET /responses{clientCorrelationId}
activate Sending FSP
activate Receiving FSP
Note right of Receiving FSP: (1) Using the Sending FSP's
clientCorrelationId, a request for the
missing API response is sent.
Sending FSP-->>Receiving FSP: HTTP 200 (Responses Object)
Note right of Receiving FSP: (2) A Responses object is returned
containing a link to the missing
resource.
Sending FSP->>Receiving FSP: GET /{link}
Note right of Receiving FSP: (3) The Sending FSP uses the link to
obtain a representation of the missing
resource.
Receiving FSP-->>Sending FSP: HTTP 200 (Requested Object)
deactivate Receiving FSP
deactivate Sending FSP