POST api/enduser/profile/{profileId}/events

Request Information

URI Parameters

NameDescriptionTypeAdditional information
profileId

globally unique identifier

Required

Body Parameters

CommonProfileEventRequest
NameDescriptionTypeAdditional information
Type

integer

Required

Title

string

Required

Description

string

Required

DateTime

string

Required

Latitude

string

Required

Longitude

string

Required

LocationCountry

string

Required

LocationDescription

string

Required

Request Formats

application/json, text/json

Sample:
{
  "Type": 1,
  "Title": "sample string 2",
  "Description": "sample string 3",
  "DateTime": "sample string 4",
  "Latitude": "sample string 5",
  "Longitude": "sample string 6",
  "LocationCountry": "sample string 7",
  "LocationDescription": "sample string 8"
}

application/xml, text/xml

Sample:
<CommonProfileEventRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/WebServices.Models">
  <DateTime>sample string 4</DateTime>
  <Description>sample string 3</Description>
  <Latitude>sample string 5</Latitude>
  <LocationCountry>sample string 7</LocationCountry>
  <LocationDescription>sample string 8</LocationDescription>
  <Longitude>sample string 6</Longitude>
  <Title>sample string 2</Title>
  <Type>1</Type>
</CommonProfileEventRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

IHttpActionResult

None.

Response Formats

application/json, text/json, application/xml, text/xml

Sample:

Sample not available.