Skip to main content
POST
/
v2
/
matchlists
/
{matchlistName}
/
entries
Create one or more entries in a matchlist
curl --request POST \
  --url https://api.uat.frankie.one/v2/matchlists/{matchlistName}/entries \
  --header 'Content-Type: application/json' \
  --header 'X-Frankie-CustomerID: <x-frankie-customerid>' \
  --header 'api_key: <api-key>' \
  --data '
{
  "entries": [
    {
      "attributes": [
        {
          "type": "ENTITY_TYPE",
          "value": "<string>"
        }
      ],
      "entityId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "reference": "CERT-BAD-ACTOR-1234-5678",
      "reasons": [
        "<string>"
      ]
    }
  ],
  "batchName": "blocklist.csv",
  "comment": {
    "text": "Update after speaking to customer over the phone directly.",
    "entityId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "entityType": "INDIVIDUAL"
  }
}
'
{
  "requestId": "01HN9XHZN6MGXM9JXG50K59Q85",
  "matchlist": {
    "matchlistId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
    "name": "<string>",
    "action": "BLOCK",
    "state": "ACTIVE"
  },
  "entries": [
    {
      "attributes": [
        {
          "type": "ENTITY_TYPE",
          "value": "<string>"
        }
      ],
      "entryId": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
      "entityId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
      "entityType": "INDIVIDUAL",
      "reference": "CERT-BAD-ACTOR-1234-5678",
      "reasons": [
        "<string>"
      ],
      "state": "ACTIVE",
      "batchName": "blocklist.csv",
      "createdBy": "<string>",
      "createdAt": "2023-11-07T05:31:56Z",
      "updatedBy": "<string>",
      "updatedAt": "2023-11-07T05:31:56Z"
    }
  ]
}

Authorizations

api_key
string
header
required

Headers

api_key
string
required

Your API key provided by FrankieOne

Example:

"245c765b124a098d09ef8765...."

X-Frankie-CustomerID
string
required

Your Customer ID provided by FrankieOne

Example:

"12345678-1234-1234-1234-123456789012"

X-Frankie-CustomerChildID
string

Your Customer Child ID provided by FrankieOne

Example:

"87654321-4321-4321-4321-210987654321"

X-Frankie-Channel
string

Open string that can be used to define the "channel" the request comes in from. It can potentially be used in routing and risk calculations upon request. Default values that can be used are: api portal smartui Any alphanumeric string is supported though. Anything over 64 characters will be truncated.

X-Frankie-Username
string

Username provided by API caller

Example:

"fred.flintstone@frankieone.com"

Path Parameters

matchlistName
string
required

The name of the matchlist.

Body

application/json

Request to create one or more entries in a matchlist

entries
object[]
required

Entries to create in the matchlist

Minimum array length: 1
batchName
string

Optional name to identify a batch of matchlist entries. This name should reflect the source of the batch. When entries are later retrieved, they can be filtered by this batch name.

Example:

"blocklist.csv"

comment
object

Response

OK

Response object for a list of matchlist entries.

requestId
string
required

The unique request identifier for the API call made.

Example:

"01HN9XHZN6MGXM9JXG50K59Q85"

matchlist
object
required

The basic details for the matchlist to which the entry or entries belong.

entries
Matchlist Entry · object[]
required

Entries in the matchlist.