Flutterwave · Schema

Flutterwave Customer

A Flutterwave v4 customer record that can own charges, orders, and transfers.

PaymentsPayoutsMobile MoneyCardsAfricaFintechRemittanceVirtual AccountsChargebacksMulti-Currency

Properties

Name Type Description
id string
email string
name object
phone object
address object
meta object
created_datetime string
View JSON Schema on GitHub

JSON Schema

flutterwave-customer-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/flutterwave/main/json-schema/flutterwave-customer-schema.json",
  "title": "Flutterwave Customer",
  "description": "A Flutterwave v4 customer record that can own charges, orders, and transfers.",
  "type": "object",
  "required": ["id", "email"],
  "properties": {
    "id": { "type": "string" },
    "email": { "type": "string", "format": "email" },
    "name": {
      "type": "object",
      "properties": {
        "first": { "type": "string" },
        "middle": { "type": "string" },
        "last": { "type": "string" }
      }
    },
    "phone": {
      "type": "object",
      "properties": {
        "country_code": { "type": "string" },
        "number": { "type": "string" }
      }
    },
    "address": {
      "type": "object",
      "properties": {
        "city": { "type": "string" },
        "country": { "type": "string" },
        "line1": { "type": "string" },
        "line2": { "type": "string" },
        "postal_code": { "type": "string" },
        "state": { "type": "string" }
      }
    },
    "meta": { "type": "object" },
    "created_datetime": { "type": "string", "format": "date-time" }
  }
}