Use the List Entries APIs to create, retrieve, and delete list entries.
The List Entries APIs are REST HTTPS endpoints that use OAuth 2.0 for authentication. Go to Entries for the swagger documentation.
Use create entry POST to create a new list entry.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists/{listId}/entries
Production Endpoint
https://api.kount.com/policy-manager/v1/lists/{listId}/entries
Method: POST
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Create Entry request parameters.
Note
When creating list entries, the request must be created based on the listType of the list you are adding to. The response will only contain properties related to that listType. For more information about each list type schema, go to Entry Schemas.
Use the Get List Entries API to retrieve a group of list entries.
The List Entries API is a REST HTTPS endpoint that uses OAuth 2.0 for authentication.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists/{listId}
Production Endpoint
https://api.kount.com/policy-manager/v1/lists/{listId}
Method: GET
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Get List Entries request parameters.
Note
When retrieving list entries, the response properties will be based on the listType of the list you are adding to. For more information about each list type schema, go to Entry Schemas.
Use the Get Entry API to retrieve list entries.
The entries API is a REST HTTPS endpoint that uses OAuth 2.0 for authentication.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists/{listId}/entries/{id}
Production Endpoint
https://api.kount.com/policy-manager/v1/lists/{listId}/entries/{id}
Method: GET
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Get Entry request properties.
Note
When retrieving list entries, the response properties will be based on the listType of the list you are pulling from. For more information about each list type schema, go to Entry Schemas.
Use the Delete Entry DELETE API to delete a list entry.
Sandbox Endpoint
https://api-sandbox.kount.com/policy-manager/v1/lists/{listId}/entries/{id}
Production Endpoint
https://api.kount.com/policy-manager/v1/lists/{listId}/entries/{id}
Method: DELETE
Header Authorization: Bearer token
Header Content-Type: application/json
Body: Refer to the Delete Entry request parameters.