Use the Custom Fields APIs to create, retrieve, and delete list entries.
The Custom Fields APIs are REST HTTPS endpoints that use OAuth 2.0 for authentication. Go to Custom Fields for the swagger documentation.
Important
In Payments Fraud, the custom fields created in the user interface must match the type in the API custom fields. Misalignment between these two applications causes comparison errors.
Use Custom Field POST to create a new custom field.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/custom-fields
Production Endpoint
https://api.kount.com/policy-manager/v1/custom-fields
Method: POST
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Create Custom Field request parameters.
Use Custom Field GET to retrieve the details of a custom field.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/custom-fields/{key}
Production Endpoint
https://api.kount.com/policy-manager/v1/custom-fields/{key}
Method: GET
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Get Custom Field request parameters.
Use List Custom Fields GET to retrieve a list of the custom fields.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/custom-fields
Production Endpoint
https://api.kount.com/policy-manager/v1/custom-fields
Method: GET
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Get List Custom Field request parameters.
Use Custom Field DELETE to delete a custom field.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/custom-fields/{key}
Production Endpoint
https://api.kount.com/policy-manager/v1/custom-fields/{key}
Method: DELETE
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Delete Custom Field request parameters.