POST v1/customers/{customerId}/collection/summary

Documentation for 'PostCollectionSummary'.

Request Information

Parameters

NameDescriptionAdditional information
customerId
Documentation for 'customerId'.

Define this parameter in the request URI.

dto
Documentation for 'dto'.

Define this parameter in the request body.

Request body formats

application/json, text/json

Sample:
Click to beautify!
{
  "id": 1,
  "likelihood": "sample string 2",
  "addNewNote": "sample string 3",
  "deleteNoteIds": [
    1,
    2,
    3
  ]
}

application/xml, text/xml

Sample:
Click to beautify!
<CollectionSummary xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Common.Dto.Post">
  <AddNewNote>sample string 3</AddNewNote>
  <DeleteNoteIds xmlns:d2p1="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
    <d2p1:long>1</d2p1:long>
    <d2p1:long>2</d2p1:long>
    <d2p1:long>3</d2p1:long>
  </DeleteNoteIds>
  <Id>1</Id>
  <Likelihood>sample string 2</Likelihood>
</CollectionSummary>

application/x-www-form-urlencoded

Sample:
Click to beautify!

Sample not available.