Mobile Wallet Payload
Overview
Returns an encrypted mobile wallet payload by card ID. 1
Endpoint URL
https://api-s.nolantechnologies.com/v0/banking/cards/:cardId/mobile-wallet-payloads
Endpoint Data
| Parameter Name | Description |
|---|---|
cardId |
The Unit card ID |
Example Request
curl -i -X POST "https://api-s.nolantechnologies.com/v0/banking/cards/1234567/mobile-wallet-payloads" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-H "X-Nolan-API-Key: YourNolanApiKey"
--data '{
"signedNonce": "eyJle..."
}'
signedNonce
Example Response
HTTP/1.1 200 OK
X-Powered-By: Express
Content-Type: application/json; charset=utf-8
Content-Length: 332
ETag: W/"14c-PIXt+3CWLR/8LXvJ5oHPfhWsbyg"
Date: Sat, 23 Sep 2023 20:51:38 GMT
Connection: keep-alive
Keep-Alive: timeout=5
{
"data": {
payload: "eyJhbGciOi..."
}
}
-
Read more about this endpoint in the Unit API docs ↩