Update Group Customer Information

Update an existing customer corporate/business account profile information by providing the unique id of the account you want to update to request body.

PUT /api/Account/v1/UpdateGroupCustomerInformation

The id of the customer is the GUID returned when creating a customer or when running the Search Account API request. This id is different from the 8-digit Customer ID.

Headers

Name
Value

Content-Type*

application/json

Authorization*

Bearer <token>

Request-Reference

{unique-reference}

Body

Name
Data Type (length)
Required
Description

id

string

Unique identifier for the group or business account (GUID format)

name

string

Name of the business

address

string

Business residential address

businessPhoneNumber

string

Business phone number

contactPersonName

string

Name of the contact person

contactPersonPhoneNumber

string

Phone number of the contact person

countryOfOperation

string

Country where the business operates

description

string

Brief description of the business

industrialSector

integer

Code representing the industrial sector The enumerations are:

40100 = Agriculture, Forestry, and Fishing

40200 = Mining and Quarrying 40300 = Manufacturing

40500 = Real Estate Activities 40700 = General Commerce 40800 = Transportation and Storage

40900 = Finance and Insurance 41000 = General

41200 = Governments

41300 = Water Supply, Sewage, Waste Management, and Remediation Activities

41400 = Construction

41500 = Information and Communication

41600 = Professional, Scientific, and Technical Activities

41700 = Administrative and Support Service Activities

41800 = Education

41900 = Human Health and Social Work Activities

42000 = Arts, Entertainment, and Recreation

42100 = Activities of Extra-Territorial Organizations and Bodies

42200 = Power and Energy 42300 = Capital Market

42400 = Oil and Gas

lga

string

Local Government Area (LGA)

natureOfBusiness

string

Nature of the business (e.g., Manufacturing)

stateOfOperation

string

State where the business operates

customerType

integer

Type of customer (e.g., 5 for corporate) The enumerations are: 1 = Individual, 2 = Group, 3 = Corporate, 4 = GroupJoint, 5 = GroupSME

registrationDate

string

Date of business registration (e.g., 2023-02-27)

incorporationDate

string

Date of business incorporation (e.g., 2023-02-27)

registrationNumber

string

Business registration number

email

string

Business email address

tin

string

Tax Identification Number (TIN)

groupMembers.customerID

string (8)

Customer ID of a group member

groupMembers.isSignatory

boolean

Set true if the group member is a signatory and false if it's not

Here is an example request and response with a sample payload sent to the endpoint in Curl format.

Sample Request
curl --location -g --request PUT '{{baseurl}}/api/Account/v1/UpdateGroupCustomerInformation' \
--header 'Content-Type: application/json' \
--header 'Authorization: bearer ' \
--header 'request-reference;' \
--data-raw '{
    "id": "f86185c1-d2ce-4d50-89bf-1b27b7b76bbc",
    "customerType": 2,
    "name": "Bell Cuisine",
    "description": "Restaurant and bar",
    "address": "6, Olatunji Street, Ota",
    "businessPhoneNumber": "09062452677",
    "natureOfBusiness": "Food",
    "industrialSector": 40100,
    "registrationDate": "2023-02-28T23:46:30.262Z",
    "incorporationDate": "2023-02-28T23:46:30.262Z",
    "registrationNumber": "294892384393",
    "email": "bleeacuisine@gmail.com",
    "contactPersonName": "09036738632",
    "contactPersonPhoneNumber": "08173986209",
    "countryOfOperation": "Nigeria",
    "stateOfOperation": "Ogun",
    "lga": "Ota LGA",
    "tin": "0985674395",
    "pep": true,
    "groupMembers": [
        {
            "customerID": "00002121",
            "isSignatory": true
        },
        {
            "customerID": "00002126",
            "isSignatory": true
        }
    ]
}'

Response

{
  "status": true,
  "message": "string",
  "data": {
    "id": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "accountNumber": "string",
    "customerID": "string",
    "customerInformationId": "3fa85f64-5717-4562-b3fc-2c963f66afa6",
    "documentIdentifier": "string"
  }
}

Last updated