website logo
Product Overview
NetSuite
Payments
QuickBooks
Xero
Navigate through spaces
⌘K
General Concepts
What is Breadwinner
Getting Started
App Installation
Initial Configuration
Person Accounts
Company Matching
Product Matching
NetSuite Items and Item Groups
Download PDF button
Weekly Sync Timeframe
Security and Permissions
NetSuite Permissions
Custom Guided Wizard
Quick Create Sales Order
Button URL Structure
NetSuite Company Creation
Button URL Generator
Support
Custom Fields
Custom Objects
Global API
Quick Start Guide
API Overview
Requests
Response
Apex Generator
Code Examples
Advanced Topics
Formula Fields
NetSuite Discounts
NetSuite Payment Terms
Memorized Transactions
Sync Data Filtering
Technical Resources
Deploy Plan
Requirements
ERD / Object Structure
Getting Help
Version History
Direct Installation Link
Docs powered by
Archbee
Global API
...
Requests
Customer

Update

2min

The following is an example of updating the Customer where we are changing some of the fields. (See Customer for all available fields). The NetSuite customer Id (internalId) is required to update the customer.

Note: You can only update one record at a time

The response returns the complete customer information, but we have shortened the response in our example for ease of reading.

Request
Response
|
//  Create a Map to store all the data of a Customer
Map<String, Object> nsCustomer = new Map<String, Object>();
nsCustomer.put('companyName', 'Grand Hotels & Resorts Ltd');
nsCustomer.put('customForm', new Map<String, Object>{'internalId'=>'-2'});
nsCustomer.put('currencyRecord', new Map<String, Object>{'internalId'=>'1'});
nsCustomer.put('priceLevel', new Map<String, Object>{'internalId'=>'1'});
nsCustomer.put('receivablesAccount', new Map<String, Object>{'internalId'=>'122'});
nsCustomer.put('subsidiary', new Map<String, Object>{'internalId'=>'1'});
nsCustomer.put('startDate', DateTime.newInstance(2020, 12, 2).getTime()/1000);
nsCustomer.put('terms', new Map<String, Object>{'internalId'=>'5'});
nsCustomer.put('territory', new Map<String, Object>{'internalId'=>'-5'});
nsCustomer.put('url', 'https://www.grandhotel.com');

//  Initialize the Customer Custom Fields
List<Object> custCustomFieldList = new List<Object>();
Map<String, Object> custCustomField1 = new Map<String, Object>();
custCustomField1.put('fieldType', 'select');
custCustomField1.put('scriptId', 'custentityrating');
custCustomField1.put('valueLookup', new Map<String, Object>{'internalId'=>'2'});
custCustomFieldList.add(custCustomField1);

Map<String, Object> custCustomField2 = new Map<String, Object>();
custCustomField2.put('fieldType', 'double');
custCustomField2.put('scriptId', 'custentity_decimal');
custCustomField2.put('value', '76.89');
custCustomFieldList.add(custCustomField2);

//  Add the Customer Custom Fields
nsCustomer.put('customFieldList', new Map<String, Object>{'customField'=>custCustomFieldList});

//  Initialize the Customer Addresses
List<Object> addressBookList = new List<Object>();
Map<String, Object> addressBook = new Map<String, Object>();
Map<String, Object> addressbookAddress = new Map<String, Object>();
addressbookAddress.put('addr1','2334 N. Michigan Avenue, Suite 1500');
addressbookAddress.put('city','Chicago');
addressbookAddress.put('state','IL');
addressbookAddress.put('country','_unitedStates');
addressbookAddress.put('zip','60601');

addressBook.put('addressbookAddress',addressbookAddress);
addressBook.put('defaultBilling',true);
addressBook.put('defaultShipping',true);
addressBook.put('isResidential',true);

addressBookList.add(addressBook);

nsCustomer.put('addressbookList', new Map<String,Object>{'addressbook'=>addressBookList});	

//  Initialize the RequestJSON Data to be passed.
Map<String, Object> requestJSONMap = new Map<String, Object>();
requestJSONMap.put('customers', new List<Object>{nsCustomer});
String reqJSON = JSON.serialize(requestJSONMap);

Map<String, Object> reqObj = new Map<String, Object>();
reqObj.put('version', '1.0');
reqObj.put('action', 'createCustomer');
reqObj.put('requestJSON', reqJSON);

//  Place a request to Breadwinner Global API
Map<String, Object> resp = breadwinner_ns.BreadwinnerNetSuiteAPI.call(reqObj);




Updated 26 Jul 2023
Did this page help you?
PREVIOUS
Create
NEXT
Delete
Docs powered by
Archbee
Docs powered by
Archbee