api/v1/customers/{id}/Update

Method: PATCH https://simportal-api-staging.azurewebsites.net/api/v1/customers/{id}/Update

Summary

Updates a customer

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

The properties required to update the customer

CustomerPatchModel
NameDescriptionTypeAdditional information
Name

string

None.

CustomerDefaultEmail

string

None.

DefaultPoolId

globally unique identifier

None.

Suspended

boolean

None.

Hidden

boolean

None.

Request Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "CustomerDefaultEmail": "sample string 2",
  "DefaultPoolId": "845a0387-be82-4e03-b904-25fdc384f44f",
  "Suspended": true,
  "Hidden": true
}

application/xml, text/xml

Sample:
<CustomerPatchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers">
  <CustomerDefaultEmail>sample string 2</CustomerDefaultEmail>
  <DefaultPoolId>845a0387-be82-4e03-b904-25fdc384f44f</DefaultPoolId>
  <Hidden>true</Hidden>
  <Name>sample string 1</Name>
  <Suspended>true</Suspended>
</CustomerPatchModel>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'CustomerPatchModel'.

Response Information

Resource Description

CustomerPatchModel
NameDescriptionTypeAdditional information
Name

string

None.

CustomerDefaultEmail

string

None.

DefaultPoolId

globally unique identifier

None.

Suspended

boolean

None.

Hidden

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "Name": "sample string 1",
  "CustomerDefaultEmail": "sample string 2",
  "DefaultPoolId": "57bc9a4b-9a4f-45a0-a74d-e6be51a6f50f",
  "Suspended": true,
  "Hidden": true
}

application/xml, text/xml

Sample:
<CustomerPatchModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/SimPortalApi.Controllers">
  <CustomerDefaultEmail>sample string 2</CustomerDefaultEmail>
  <DefaultPoolId>57bc9a4b-9a4f-45a0-a74d-e6be51a6f50f</DefaultPoolId>
  <Hidden>true</Hidden>
  <Name>sample string 1</Name>
  <Suspended>true</Suspended>
</CustomerPatchModel>