Skip to main content
Use when: A new user is being created or onboarding data is being captured. Endpoint:
[POST]
{{baseURL}}/ingest 
Request Template:
    {
      "key": "6WgE3W1",
      "type": "onboarding",
      "event": {
          "user": {
            "user_id": "9931fac0-6bfa-4b3c-842c-7840006d89b6",
            "user_type": "individual",
            "registration_time": "2022-12-12T12:15:05.392Z",
            "email": "jane.doe@anon.com",
            "name": "Jane Doe",
            "dob": "1980-01-01",
            "tier": "silver",
            "account_type": "checking",
            "gender": "male",
            "balance": 24500.50,
            "mobile": "5797454931",
            "last_pin_change": "2022-11-01T08:30:00.000Z",
            "last_password_change": "2022-10-15T14:22:10.000Z",
            "credit_score": "720",
            "employer_information": {
              "annual_income": "",
              "employment_status": "employed",
              "employer_name": "Innovate Solutions"
            },
            "kyc_information": [
              {
                "id_number": "1234567890",
                "id_type": "bvn",
                "country": "NG",
                ... //additional keys and values
              },
              {
                "id_number": "1234567890",
                "id_type": "NIN",
                "country": "NG",
                ... //additional keys and values
              }
            ]
          },
          "device": {
            "type": "mobile",
            "os": "Android",
            "model": "Pixel 7",
            "language": "en-US",
            "ip_address": "154.72.170.233",
            "device_id": "ff97adb7-8d3d-4f15-94df-87e21e1212de"
          },
          "address": {
            "address1": "6238 Walker Unions Suite 802",
            "address2": "",
            "city": "North Sarah",
            "region": "",
            "zipcode": "23401",
            "country": "Morocco"
          },
          "meta": [
          { "key": "value" }
       ]

      }
    }