Update 3DS challenge method
curl --request PUT \
--url https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Reap-Version: <reap-version>' \
--data '
{
"3dsChallengeMethod": "SMS"
}
'const options = {
method: 'PUT',
headers: {
'Reap-Version': '<reap-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({'3dsChallengeMethod': 'SMS'})
};
fetch('https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method"
payload = { "3dsChallengeMethod": "SMS" }
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"error": {
"code": "CARD_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Cards
Update 3DS challenge method
Updates the 3DS challenge verification method for a card.
PUT
/
cards
/
{id}
/
3ds-challenge-method
Update 3DS challenge method
curl --request PUT \
--url https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--header 'Reap-Version: <reap-version>' \
--data '
{
"3dsChallengeMethod": "SMS"
}
'const options = {
method: 'PUT',
headers: {
'Reap-Version': '<reap-version>',
Authorization: 'Bearer <token>',
'Content-Type': 'application/json'
},
body: JSON.stringify({'3dsChallengeMethod': 'SMS'})
};
fetch('https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://sg.sandbox.api.reap.global/cards/{id}/3ds-challenge-method"
payload = { "3dsChallengeMethod": "SMS" }
headers = {
"Reap-Version": "<reap-version>",
"Authorization": "Bearer <token>",
"Content-Type": "application/json"
}
response = requests.put(url, json=payload, headers=headers)
print(response.text){
"error": {
"code": "CARD_NOT_FOUND",
"message": "<string>",
"detail": {}
}
}Authorizations
API key as Bearer token
Headers
API version (YYYY-MM-DD)
Available options:
2025-02-14 Example:
"2025-02-14"
Path Parameters
Body
application/jsonapplication/x-www-form-urlencodedmultipart/form-data
Request body for updating 3DS challenge method
3DS challenge verification method
Available options:
SMS, WEBHOOK Example:
"SMS"
Response
Response for status 204