Developer Discussions

Ask a Question
Back to All

Money movement (transfers) error

Hello,

I have a question about your sandbox API at https://api-test.paymaya.com/mi3-sandbox/transfers. I'm encountering an issue when attempting to post a request as I'm receiving the error message "Invalid key!" in the response. Could you please advise me on how to resolve this issue?

below is the sample CURL.

curl --location 'https://api-test.paymaya.com/mi3-sandbox/transfers'
--header 'Authorization: OUR_TOKEN'
--header 'Content-Type: application/json'
--data '{
"amount": {
"currency": "Php",
"value": 100
},
"note": "sample note",
"recipient": {
"type": "TOKEN",
"value": "CLIENT_TOKEN"
}
}'

Thank you.