PayPal.Api.WebProfile.Update C# (CSharp) Method

Update() public method

Updates a web experience profile. Pass the ID of the profile to the request URI and pass the profile details in the JSON request body. If your request omits any profile detail fields, the operation removes the previously set values for those fields.
public Update ( APIContext apiContext ) : void
apiContext APIContext APIContext used for the API call.
return void
        public void Update(APIContext apiContext)
        {
            WebProfile.Update(apiContext, this);
        }

Same methods

WebProfile::Update ( APIContext apiContext, WebProfile profile ) : void

Usage Example

 /// <summary>
 /// Updates a web experience profile. Pass the ID of the profile to the request URI and pass the profile details in the JSON request body. If your request omits any profile detail fields, the operation removes the previously set values for those fields.
 /// </summary>
 /// <param name="apiContext">APIContext used for the API call.</param>
 public void Update(APIContext apiContext)
 {
     WebProfile.Update(apiContext, this);
 }