Create allowlist record

Creates allowlist record.

SecurityPublishableApiKey
Request
Request Body schema: application/json
required

Allowlist record.

type
required
string

Type of data to exclude from risk score checks. Data types that are added to this field are excluded from risk score checks and are not added to blocklists.

Enum: "address" "bank-account" "bin" "country" "customer-id" "email" "email-domain" "fingerprint" "ip-address" "payment-card"
value
required
string

Value of the allowlist record.

Responses
201

Allowlist record created.

Response Headers
Location
string <uri>

Location of the related resource.

Example: "https://api.rebilly.com/example"
Response Schema: application/json
type
required
string

Type of data to exclude from risk score checks. Data types that are added to this field are excluded from risk score checks and are not added to blocklists.

Enum: "address" "bank-account" "bin" "country" "customer-id" "email" "email-domain" "fingerprint" "ip-address" "payment-card"
value
required
string

Value of the allowlist record.

id
string <= 50 characters

ID of the allowlist record.

createdTime
string <date-time> (CreatedTime)

Date and time which is set automatically when the resource is created.

updatedTime
string <date-time> (UpdatedTime)

Date and time which updates automatically when the resource is updated.

401

Unauthorized access. Invalid credentials used.

409

Conflict.

post/allowlists
Request samples
application/json
{
  • "type": "address",
  • "value": "string"
}
Response samples
application/json
{
  • "id": "rsal_0YVF9605RKC62BP14NE2R7V2XT",
  • "type": "address",
  • "value": "string",
  • "createdTime": "2019-08-24T14:15:22Z",
  • "updatedTime": "2019-08-24T14:15:22Z"
}