get http://{providerApiEndpoint}/manifest
Returns the custom fields of the antifraud provider manifest
Response body
Name | Type | Mandatory | Description |
---|---|---|---|
cardholderDocument |
string | Describes the need for cardholder documentation to process antifraud analysis. Accepted values:
required : a cardholder document is mandatory.
optional : a cardholder document can be used, but is not required.
unused : a cardholder document is not required. |
|
customFields |
object | Describes the customized fields supported by the connector | |
↳ name |
string | Yes | Custom field name |
↳ type |
string | Yes | Custom field type. Accepted values: text , select |
↳ options |
string | In case of select type, the possible params are text and value |
|
↳text |
object | Custom field description | |
↳value |
string | Custom field value |
Request examples and their responses
curl --location --request GET 'http:///%7Binsert%20URL%20here%7D/manifest' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json'
{
"cardholderDocument": "required",
"customFields":[
{
"name":"ApiKey",
"type":"text"
}
{
"name":"AnalysisLocation",
"type":"select",
"options":[
{
"text":"MEX",
"value":"Latin America"
}
{
"text":"USA",
"value":"United States"
}
]
}
]
}