GET papi/v1/drv/{id}/{feedTypeId}


Security

Anonymous API


Request Information

URI Parameters

NameDescriptionTypeAdditional information
id

globally unique identifier

Required

feedTypeId

integer

Required

Required Headers

None.

Optional Headers

Name Description Sample Type Default
ApplicationType Represents the value of the consumer's application type.
Allow multiple values: no.
1 ApplicationType None
Accept-Language Represents the value of the desired language for translations.
Allow multiple values: yes.
es string en

Body Parameters

None.



Response Information

Resource Description

Collection of Article
NameDescriptionTypeAdditional information
WelcomeMessage

string

None.

SourcePath

string

None.

SourceName

string

None.

DestinationPath

string

None.

DestinationName

string

None.

FileSize

integer

None.

Downloaded

boolean

None.

DeletedOriginalFile

boolean

None.

Comments

string

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "WelcomeMessage": "sample string 1",
    "SourcePath": "sample string 2",
    "SourceName": "sample string 3",
    "DestinationPath": "sample string 4",
    "DestinationName": "sample string 5",
    "FileSize": 6,
    "Downloaded": true,
    "DeletedOriginalFile": true,
    "Comments": "sample string 9"
  },
  {
    "WelcomeMessage": "sample string 1",
    "SourcePath": "sample string 2",
    "SourceName": "sample string 3",
    "DestinationPath": "sample string 4",
    "DestinationName": "sample string 5",
    "FileSize": 6,
    "Downloaded": true,
    "DeletedOriginalFile": true,
    "Comments": "sample string 9"
  }
]

application/xml, text/xml

Sample:
<ArrayOfArticle xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
  <Article>
    <WelcomeMessage>sample string 1</WelcomeMessage>
    <SourcePath>sample string 2</SourcePath>
    <SourceName>sample string 3</SourceName>
    <DestinationPath>sample string 4</DestinationPath>
    <DestinationName>sample string 5</DestinationName>
    <FileSize>6</FileSize>
    <Downloaded>true</Downloaded>
    <DeletedOriginalFile>true</DeletedOriginalFile>
    <Comments>sample string 9</Comments>
  </Article>
  <Article>
    <WelcomeMessage>sample string 1</WelcomeMessage>
    <SourcePath>sample string 2</SourcePath>
    <SourceName>sample string 3</SourceName>
    <DestinationPath>sample string 4</DestinationPath>
    <DestinationName>sample string 5</DestinationName>
    <FileSize>6</FileSize>
    <Downloaded>true</Downloaded>
    <DeletedOriginalFile>true</DeletedOriginalFile>
    <Comments>sample string 9</Comments>
  </Article>
</ArrayOfArticle>