This method creates a new customer address.
Parameter |
Type |
Description |
---|---|---|
address |
The customer address object being created. |
|
context |
Specifies information about how the method will be called. |
|
policy |
Specifies the set of behaviors and behavior options to be applied during the operation. |
The following C# example creates a customer address with the key value “BILLING” for the customer with a customer key of “AARONFIT0001”. The Line1, Line2, City, State, and CountryRegion properties are set. All other properties are left as default values.
Legacy endpoint
using System; using System.Collections.Generic; using System.Text; using DynamicsGPWebServiceSample.DynamicsGPService; namespace DynamicsGPWebServiceSample { class Program { static void Main(string[] args) { CompanyKey companyKey; Context context; CustomerKey customerKey; CustomerAddressKey customerAddressKey; CustomerAddress customerAddress; Policy customerAddressCreatePolicy; // Create an instance of the service DynamicsGP wsDynamicsGP = new DynamicsGP(); // Be sure the default credentials are used wsDynamicsGP.UseDefaultCredentials = true; // Create a context with which to call the service context = new Context(); // Specify which company to use (sample company) companyKey = new CompanyKey(); companyKey.Id = (-1); // Set up the context object context.OrganizationKey = (OrganizationKey)companyKey; // Create a customer key to specify the customer customerKey = new CustomerKey(); customerKey.Id = "AARONFIT0001"; // Create a customer address key customerAddressKey = new CustomerAddressKey(); customerAddressKey.CustomerKey = customerKey; customerAddressKey.Id = "BILLING"; // Create a customer address object customerAddress = new CustomerAddress(); customerAddress.Key = customerAddressKey; // Populate properties with address information customerAddress.Line1 = "11403 45 St. South"; customerAddress.Line2 = "Billing Dept."; customerAddress.City = "Chicago"; customerAddress.State = "IL"; customerAddress.CountryRegion = "USA"; // Get the create policy for the customer address customerAddressCreatePolicy = wsDynamicsGP.GetPolicyByOperation("CreateCustomerAddress", context); // Create the customer address wsDynamicsGP.CreateCustomerAddress(customerAddress, context, customerAddressCreatePolicy); } } }
Native endpoint
using System; using System.Collections.Generic; using System.Linq; using System.Text; using DynamicsGPWebServiceSample.DynamicsGPService; namespace DynamicsGPWebServiceSample { class Program { static void Main(string[] args) { CompanyKey companyKey; Context context; CustomerKey customerKey; CustomerAddressKey customerAddressKey; CustomerAddress customerAddress; Policy customerAddressCreatePolicy; // Create an instance of the service DynamicsGPClient wsDynamicsGP = new DynamicsGPClient(); // Create a context with which to call the service context = new Context(); // Specify which company to use (sample company) companyKey = new CompanyKey(); companyKey.Id = (-1); // Set up the context object context.OrganizationKey = (OrganizationKey)companyKey; // Create a customer key to specify the customer customerKey = new CustomerKey(); customerKey.Id = "AARONFIT0001"; // Create a customer address key customerAddressKey = new CustomerAddressKey(); customerAddressKey.CustomerKey = customerKey; customerAddressKey.Id = "BILLING"; // Create a customer address object customerAddress = new CustomerAddress(); customerAddress.Key = customerAddressKey; // Populate properties with address information customerAddress.Line1 = "11403 45 St. South"; customerAddress.Line2 = "Billing Dept."; customerAddress.City = "Chicago"; customerAddress.State = "IL"; customerAddress.CountryRegion = "USA"; // Get the create policy for the customer address customerAddressCreatePolicy = wsDynamicsGP.GetPolicyByOperation("CreateCustomerAddress", context); // Create the customer address wsDynamicsGP.CreateCustomerAddress(customerAddress, context, customerAddressCreatePolicy); // Close the service if(wsDynamicsGP.State != CommunicationState.Faulted) { wsDynamicsGP.Close(); } } } }