v1
latestOpenAPI 3.0.32026-07-243003151.2 MBServices
Create Wallets and Identities
This API method allows the calling application to create a Wallet with one or more Identities within single API call.
post/services/wallet
Request body
Example request
{
"type": "CONSUMER",
"status": "ACTIVE",
"state": "EARNBURN",
"friendlyName": "Susan's Wallet",
"identities": [
{
"type": "CARD",
"status": "ACTIVE",
"value": "12344567890"
},
{
"type": "FOB",
"status": "ACTIVE",
"value": 987654321
}
],
"relationships": {
"child": [
{
"type": "PARENT_WALLET",
"status": "ACTIVE"
}
],
"parent": [
{
"type": "CHILD_WALLET",
"status": "ACTIVE"
}
],
"associate": [
{
"type": "ASSOCIATE_WALLET",
"status": "ACTIVE"
}
]
},
"meta": {
"key2": "Value2"
}
}Response
Created