redeem_msg
Key | Type | Description | Required |
---|---|---|---|
header | object | This object is required in every call. The information it includes is used to verify the signature. | true |
message | string | This tag specifies the JSON schema object to validate against. For this call, use redeem_msg . | false |
amount | float | Amount of funds to be credited to user handle's specified account. | true |
account_name | string | Name of user's linked account to be credited. | true |
Used By Endpoints:
- /redeem_sila
Note - We recently renamed the field auth_handle
to app_handle
. For backward compatibility, auth_handle
is still valid but has been removed from our documentation.
{
"header": {
"created": 1234567890,
"app_handle": "app_handle",
"user_handle":"user_handle",
"version": "0.2",
"reference": "<your unique id>"
},
"message": "redeem_msg",
"amount": 1000,
"account_name": "default"
}
Updated about 2 months ago