DELETE api/V1/user/deleteRelative/{id}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

integer

Required

Body Parameters

None.

Response Information

Resource Description

Relatives
NameDescriptionTypeAdditional information
Id

integer

None.

PlayerId

globally unique identifier

None.

Name

string

None.

Address

string

None.

PostalCode

string

None.

PostalAddress

string

None.

Email

string

None.

Phone

string

None.

ShowAsContactPerson

boolean

None.

SendReminder

boolean

None.

CanInpersonate

boolean

None.

Rw

boolean

None.

Response Formats

application/json, text/json

Sample:
{
  "id": 1,
  "playerId": "dc293d50-b4b7-4f5c-9aa6-2681bcc01911",
  "name": "sample string 3",
  "address": "sample string 4",
  "postalCode": "sample string 5",
  "postalAddress": "sample string 6",
  "email": "sample string 7",
  "phone": "sample string 8",
  "showAsContactPerson": true,
  "sendReminder": true,
  "canInpersonate": true,
  "rw": true
}

application/xml, text/xml

Sample:
<Relatives xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/oiback.Classes">
  <Address>sample string 4</Address>
  <CanInpersonate>true</CanInpersonate>
  <Email>sample string 7</Email>
  <Id>1</Id>
  <Name>sample string 3</Name>
  <Phone>sample string 8</Phone>
  <PlayerId>dc293d50-b4b7-4f5c-9aa6-2681bcc01911</PlayerId>
  <PostalAddress>sample string 6</PostalAddress>
  <PostalCode>sample string 5</PostalCode>
  <Rw>true</Rw>
  <SendReminder>true</SendReminder>
  <ShowAsContactPerson>true</ShowAsContactPerson>
</Relatives>