PUT api/CommitteeMember/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

Body Parameters

CommitteeMemberRequest
NameDescriptionTypeAdditional information
CommitteeMember

CommitteeMember

None.

Request Formats

application/json, text/json

Sample:
{
  "CommitteeMember": {
    "Id": "9921fb2c-48ad-40a8-8ebb-a5f6ced6f463",
    "Code": "sample string 2",
    "Name": "sample string 3",
    "Title": "sample string 4",
    "TermBegins": "2025-08-31T05:43:53.7308486+00:00",
    "TermEnds": "2025-08-31T05:43:53.7308486+00:00",
    "Member": {
      "Id": "74a25ce0-3406-4f6d-86c5-cd0aa3d25e7f",
      "Number": "sample string 2",
      "Name": "sample string 3"
    },
    "Comments": "sample string 7",
    "Custom": {
      "Attribute": [
        {
          "Type": 0,
          "Key": "sample string 1",
          "Value": "sample string 2",
          "FormattedValue": "sample string 3"
        },
        {
          "Type": 0,
          "Key": "sample string 1",
          "Value": "sample string 2",
          "FormattedValue": "sample string 3"
        }
      ]
    }
  }
}

application/xml, text/xml

Sample:
<CommitteeMemberRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.CommitteeMember">
  <CommitteeMember>
    <Code>sample string 2</Code>
    <Comments>sample string 7</Comments>
    <Custom>
      <Attribute xmlns:d4p1="http://schemas.datacontract.org/2004/07/Protech.UX.API.CRMEntity">
        <d4p1:Attribute>
          <d4p1:FormattedValue>sample string 3</d4p1:FormattedValue>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Type>text</d4p1:Type>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:Attribute>
        <d4p1:Attribute>
          <d4p1:FormattedValue>sample string 3</d4p1:FormattedValue>
          <d4p1:Key>sample string 1</d4p1:Key>
          <d4p1:Type>text</d4p1:Type>
          <d4p1:Value>sample string 2</d4p1:Value>
        </d4p1:Attribute>
      </Attribute>
    </Custom>
    <Id>9921fb2c-48ad-40a8-8ebb-a5f6ced6f463</Id>
    <Member>
      <Id>74a25ce0-3406-4f6d-86c5-cd0aa3d25e7f</Id>
      <Name>sample string 3</Name>
      <Number>sample string 2</Number>
    </Member>
    <Name>sample string 3</Name>
    <TermBegins>2025-08-31T05:43:53.7308486+00:00</TermBegins>
    <TermEnds>2025-08-31T05:43:53.7308486+00:00</TermEnds>
    <Title>sample string 4</Title>
  </CommitteeMember>
</CommitteeMemberRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

APIResponse
NameDescriptionTypeAdditional information
Status

Status

None.

Id

globally unique identifier

None.

Description

string

None.

Response Formats

application/json, text/json

Sample:
{
  "Status": 0,
  "Id": "1f440af0-ef0b-4dd7-9201-edec20ccd0eb",
  "Description": "sample string 2"
}

application/xml, text/xml

Sample:
<APIResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Protech.UX.API.Response">
  <Description>sample string 2</Description>
  <Id>1f440af0-ef0b-4dd7-9201-edec20ccd0eb</Id>
  <Status>Success</Status>
</APIResponse>