POST api/HigherLogicActivity

Create Higher Logic Activities

Request Information

URI Parameters

None.

Body Parameters

System.Collections.Generic.IEnumerable`1[Altai.Web.Services.Models.HigherLogicActivity]
NameDescriptionTypeAdditional information
MemberKey

The string representation of the contact GUID

System.String

None.

ActivityTypeDescription

A description of the type of activity

System.String

None.

ActivityDateTime

The date and time of the activity

System.DateTime

None.

ObjectUrl

A URL that links to information about the activity

System.String

None.

ActivityText

The Subject of the Higher Logic Activity in CRM

System.String

None.

Request Formats

application/json, text/json

Sample:
[
  {
    "MemberKey": "sample string 1",
    "ActivityTypeDescription": "sample string 2",
    "ActivityDateTime": "2024-09-19T12:31:41.0973358-04:00",
    "ObjectUrl": "sample string 4",
    "ActivityText": "sample string 5"
  },
  {
    "MemberKey": "sample string 1",
    "ActivityTypeDescription": "sample string 2",
    "ActivityDateTime": "2024-09-19T12:31:41.0973358-04:00",
    "ObjectUrl": "sample string 4",
    "ActivityText": "sample string 5"
  }
]

application/xml, text/xml

Sample:
<ArrayOfHigherLogicActivity xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/Altai.Web.Services.Models">
  <HigherLogicActivity>
    <ActivityDateTime>2024-09-19T12:31:41.0973358-04:00</ActivityDateTime>
    <ActivityText>sample string 5</ActivityText>
    <ActivityTypeDescription>sample string 2</ActivityTypeDescription>
    <MemberKey>sample string 1</MemberKey>
    <ObjectUrl>sample string 4</ObjectUrl>
  </HigherLogicActivity>
  <HigherLogicActivity>
    <ActivityDateTime>2024-09-19T12:31:41.0973358-04:00</ActivityDateTime>
    <ActivityText>sample string 5</ActivityText>
    <ActivityTypeDescription>sample string 2</ActivityTypeDescription>
    <MemberKey>sample string 1</MemberKey>
    <ObjectUrl>sample string 4</ObjectUrl>
  </HigherLogicActivity>
</ArrayOfHigherLogicActivity>

application/x-www-form-urlencoded

Sample:

Failed to generate the sample for media type 'application/x-www-form-urlencoded'. Cannot use formatter 'JQueryMvcFormUrlEncodedFormatter' to write type 'IEnumerable`1'.

Response Information

Resource Description

System.Net.Http.HttpResponseMessage
NameDescriptionTypeAdditional information
Version

System.Version

None.

Content

System.Net.Http.HttpContent

None.

StatusCode

System.Net.HttpStatusCode

None.

ReasonPhrase

System.String

None.

Headers

System.Net.Http.Headers.HttpResponseHeaders

None.

RequestMessage

System.Net.Http.HttpRequestMessage

None.

IsSuccessStatusCode

System.Boolean

None.