PaaS API Docs
  • Getting Started
  • Authentication
  • Use cases
    • Remittance
      • Bonus/Discount on Remittance
    • Business Payments
    • Individual Wallet
    • Business Wallet
    • Payout
  • API References
    • Data Population
      • Spec Sheet
      • Country
      • States
      • Settlement Rates
    • User
      • User Object
        • User Verification
        • Identification Documents
        • User Verification Status
        • CIP Information Status
      • Receive User Object
      • Register a User
      • Update User
      • Business Representatives
        • Business Representatives Object
        • Add Business Representatives
        • Update Business Representatives
        • Get Business Representatives
      • Declaration
        • Declaration Object
        • Declaration
      • Initiate Verification
      • Get User by ID
      • Get Verification Status
      • Add a Receive User
      • Update a Receive User
      • Get Receive User List
    • Funds
      • User Funding Account Object
      • Funding Account Widget
        • OAuth Integration
        • Bank Verification Status
      • Wallet Object
      • Create a Wallet
      • Get Wallet Details
      • Get User Funding Account
      • Delete User Funding Account
      • Add a Receive Account
      • Update a Receive Account
      • Get Receive Accounts
    • Payout
      • Get Banks
      • Get Payers
    • Transaction (External)
      • Transaction Object
      • Create Transaction
      • Get Transaction by ID
      • Cancel Transaction
      • Transaction Delivery
      • Get Transaction Limits
    • Transaction (Wallet)
      • Wallet Transfer Object
      • Create Transfers
        • Load Wallet
        • Unload Wallet
        • Wallet to Wallet Transfer
      • Get Wallet Transfer Details
      • Get Limits
    • Transaction (Payout)
      • Payout Transaction Object
      • Create Payout Transaction
    • Webhooks
      • Subscribe
      • Integration
      • Events
    • Error Codes
  • Sandbox
    • User: Test Values
    • Funds: Test Values
    • Transaction: Test Values
  • Changelog
    • 2023
      • February 14, 2023
      • January 06, 2023
    • 2022
      • December 28, 2022
      • December 26, 2022
      • December 23, 2022
      • December 2, 2022
      • November 21, 2022
      • November 11, 2022
      • October 31, 2022
      • October 17, 2022
      • August 31, 2022
      • August 1, 2022
      • July 25, 2022
      • May 23, 2022
      • April 7, 2022
      • March 30, 2022
      • March 23, 2022
      • Feb 21, 2022
      • Feb 15, 2022
      • Jan 24, 2022
      • Jan 19, 2022
      • March 10, 2022
Powered by GitBook
On this page

Was this helpful?

  1. API References
  2. User
  3. Business Representatives

Update Business Representatives

Read for details on adding, updating and retrieving business representatives

PATCH /users/{{user_id}}/business-representative/{{id}}

Updatable fields for business representative

Fields

Send user is verified

Send user is not verified

Additional details

first_name

Yes

Yes

middle_name

Yes

Yes

last_name

Yes

Yes

date_of_birth

Yes

Yes

address_line1

Yes

Yes

city

Yes

Yes

state

Yes

Yes

country

No

No

zipcode

Yes

Yes

br_type

No

No

virtual_documents

Yes

Yes

physical_documents

Yes

Yes

Updating physical_document object will add a new copy of the document and archive the older one.

curl --location --request PATCH '{{url}}/users/{{user_id}}/business-representative/{{id}}' \
--header 'X-Client-Id: {{client_id}}' \
--header 'X-Client-Secret: {{client_secret}}' \
--header 'Content-Type: application/json' \
--data-raw '{
    "first_name": "John",
    "middle_name": null,
    "last_name": "Sherpa",
    "city": "North Pole",
    "state": "CA",
    "country": "US",
    "zipcode": "99705",
    "address_line1": "123 Main Street Room 22",
    "date_of_birth": "1997-09-08",
    "physical_documents": [
        {
            "document_value": "data:image/jpg;base64,SUQsasasasas909090==",
            "document_value_back": "data:image/jpg;base64,SUQsasasas()()==",
            "document_type": "DRIVING_LICENCE"
        }
    ],
    "virtual_documents": [
        {
            "document_value": "222222222",
            "document_type": "SSN"
        }
    ]
}'
{
    "address_line1": "123 Main Street Room 22",
    "city": "North Pole",
    "date_of_birth": "1997-09-08",
    "email":"jonh.sherpa@yahoo.com",
    "first_name": "John",
    "gender":"male",
    "id": {{UUID}},
    "last_name": "Sherpa",
    "mobile_phone":"5417543010",
    "ownership_percentage":0,
    "physical_documents": [
        {
            "id": {{UUID}},
            "document_type": "DRIVING_LICENCE"
        }
    ],
    "state": "CA",
    "title":"CEO",
    "virtual_documents": [
        {
            "document_value": "*****2222",
            "id": {{UUID}},
            "document_type": "SSN"
        }
    ],
    "zipcode": "99705",
    "br_type": {
        "account_operator": true,
        "beneficial_owner": false,
        "compliance": false,
        "primary_controller": false
    },
    "country": "US",
}
PreviousAdd Business RepresentativesNextGet Business Representatives

Last updated 2 years ago

Was this helpful?