POST v/1/Rest/CEContext/{client_domain}/PeerToPeer/Team/Members/{id}

Get information on a specific team member for the team you are on in P2P.

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

the team member id.

string

Required

client_domain

string

None.

Body Parameters

None.

Response Information

Resource Description

information on the team member.

GetPeerToPeerPageResponse
NameDescriptionTypeAdditional information
Page

PeerToPeerPageRecord

None.

Successful

boolean

None.

Error

PublicApiError

None.

Response Formats

application/json, text/json

Sample:
{
  "Page": {
    "Active": true,
    "Fundraiser": {
      "Type": 1,
      "Name": "sample string 1",
      "Id": 2
    },
    "Team": {
      "Captain": {
        "Type": 1,
        "Name": "sample string 1",
        "Id": 2
      },
      "TotalRaised": 1.1,
      "Name": "sample string 2",
      "Id": 3
    },
    "TotalRaised": 2.1,
    "Name": "sample string 3",
    "DateCreated": "2024-03-28T18:11:04.5242112-04:00",
    "Id": 5
  },
  "Successful": true,
  "Error": {
    "Code": 0,
    "Message": "sample string 1"
  }
}

application/xml, text/xml

Sample:
<GetPeerToPeerPageResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
  <Error>
    <Message>sample string 1</Message>
    <Code>None</Code>
  </Error>
  <Successful>true</Successful>
  <Page>
    <Id>5</Id>
    <DateCreated>2024-03-28T18:11:04.5242112-04:00</DateCreated>
    <Name>sample string 3</Name>
    <Active>true</Active>
    <Fundraiser>
      <Id>2</Id>
      <Name>sample string 1</Name>
      <Type>Organization</Type>
    </Fundraiser>
    <Team>
      <Id>3</Id>
      <Name>sample string 2</Name>
      <Captain>
        <Id>2</Id>
        <Name>sample string 1</Name>
        <Type>Organization</Type>
      </Captain>
      <TotalRaised>1.1</TotalRaised>
    </Team>
    <TotalRaised>2.1</TotalRaised>
  </Page>
</GetPeerToPeerPageResponse>