action rebilly_get_blocklist { label: "Retrieve a blocklist" description: "Retrieve a blocklist with specified identifier string.\n" provider: rebilly method: GET path: "/blocklists/{id}" encoding: json output: { type: "object" required: ["type", "value"] properties: { _links: { type: "array" description: "The links related to resource." items: { type: "object" required: ["rel"] properties: { rel: { type: "string" description: "The link type." enum: ["self"] } } } } createdTime: { description: "The blocklist created time." type: "object" } expirationTime: { type: "string" format: "date-time" description: "The blocklist expiration time." } id: { description: "The blocklist identifier string." type: "object" } type: { type: "string" description: "The blocklist type." enum: ["payment-card", "bank-account", "customer-id", "email", "email-domain", "ip-address", "country", "fingerprint", "bin", "address"] } updatedTime: { description: "The blocklist updated time." type: "object" } value: { type: "string" description: "The blocklist value." } } } }