POST Dealer/getscheduledactivity

Request Information

URI Parameters

None.

Body Parameters

GetScheduledActivityRequest
NameDescriptionTypeAdditional information
activityType

string

None.

token

globally unique identifier

Required

Request Formats

application/json, text/json

Sample:
{
  "activityType": "sample string 1",
  "token": "6b191df8-807c-4146-80e9-77d33dd8525d"
}

application/xml, text/xml

Sample:
<GetScheduledActivityRequest xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Dealer">
  <token xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models">6b191df8-807c-4146-80e9-77d33dd8525d</token>
  <activityType>sample string 1</activityType>
</GetScheduledActivityRequest>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

GetScheduledActivityResponse
NameDescriptionTypeAdditional information
code

integer

None.

error

string

None.

ScheduledActivityList

Collection of ScheduledActivityItem

None.

APIVersion

integer

None.

Response Formats

application/json, text/json

Sample:
{
  "ScheduledActivityList": [
    {
      "EntityID": "1b25dc5d-dedb-4448-8b87-2d2935a1e0d2",
      "ActivityID": 2
    },
    {
      "EntityID": "1b25dc5d-dedb-4448-8b87-2d2935a1e0d2",
      "ActivityID": 2
    }
  ],
  "APIVersion": 1,
  "code": 200,
  "error": "sample string 1"
}

application/xml, text/xml

Sample:
<GetScheduledActivityResponse xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API.Models.Dealer">
  <APIVersion xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">1</APIVersion>
  <error xmlns="http://schemas.datacontract.org/2004/07/AutoAlert.API">sample string 1</error>
  <ScheduledActivityList>
    <ScheduledActivityItem>
      <ActivityID>2</ActivityID>
      <EntityID>1b25dc5d-dedb-4448-8b87-2d2935a1e0d2</EntityID>
    </ScheduledActivityItem>
    <ScheduledActivityItem>
      <ActivityID>2</ActivityID>
      <EntityID>1b25dc5d-dedb-4448-8b87-2d2935a1e0d2</EntityID>
    </ScheduledActivityItem>
  </ScheduledActivityList>
</GetScheduledActivityResponse>