Use the List APIs to create, retrieve, and delete lists.
The List APIs are REST HTTPS endpoints that use OAuth 2.0 for authentication. Go to Lists for the swagger documentation.
Use create lists POST to create a new list.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists
Production Endpoint
https://api.kount.com/policy-manager/v1/lists
Method: POST
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Create List request parameters.
Use GET Lists to retrieve all existing lists.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists
Production Endpoint
https://api.kount.com/policy-manager/v1/lists
Method: GET
Header Authorization: Bearer token
Header Content-Type: application/json
Body: N/A
Use List DELETE to delete a list.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists/{id}
Production Endpoint
https://api.kount.com/policy-manager/v1/lists/{id}
Method: DELETE
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Delete List request parameters.