Back | Webservices | Home

UGCContentRejected

Description

Upload new content by Registered user and returns content object Containing message(Error/Successfully uploaded)

Request Parameters

Name Description

soap:header

Username and password

Type: UserCredentials

Children: Userid, Password

ClientID The Client ID: int
channelId The Channel ID: int
UserID The User ID : int
Categories Categories: string
ContentName The Content Name: string
MetaTitle The Meta Title: string
ContentType ID The Content Type ID: int
ContentShortDescription The Content Short Description: string
ContentLongDescription The Content Long Description: string
isFile The isFile: int(0/1)
ContentURL The Content URL: string

Response Elements

Name Description

UGCContentAccepted

A Object of Content

Type: Content

Example using SOAP

Example Request

The following is a sample SOAP 1.2 request and response.

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Header>
    <UserCredentials xmlns="http://vidzapper.net/Webservice/">
      <Userid>string</Userid>
      <Password>string</Password>
    </UserCredentials>
  </soap12:Header>
  <soap12:Body>
    <UGCUploadContent xmlns="http://vidzapper.net/Webservice/">
      <ClientId>long</ClientId>
      <channelId>long</channelId>
      <UserID>long</UserID>
      <Categories>string</Categories>
      <ContentName>string</ContentName>
      <ContentTypeID>int</ContentTypeID>
      <ContentShortDescription>string</ContentShortDescription>
      <ContentLongDescription>string</ContentLongDescription>
      <isFile>int</isFile>
      <ContentURL>string</ContentURL>
    </UGCUploadContent>
  </soap12:Body>
</soap12:Envelope>

Example Response

<?xml version="1.0" encoding="utf-8"?>
<Content xmlns="http://vidzapper.net/Webservice/">
  <ClientID>int</ClientID>
  <ChannelID>int</ChannelID>
  <PlaylistID>int</PlaylistID>
  <ContentSequenceID>int</ContentSequenceID>
  <ContentID>int</ContentID>
  <MetaDataID>int</MetaDataID>
  <Title>string</Title>
  <ShortDesc>string</ShortDesc>
  <LongDesc>string</LongDesc>
  <File>string</File>
  <URL>string</URL>
  <IsDefault>boolean</IsDefault>
  <IsFile>boolean</IsFile>
  <Image>string</Image>
  <Duration>float</Duration>
  <Height>float</Height>
  <Width>float</Width>
  <IsAvailable>boolean</IsAvailable>
  <Rating>string</Rating>
  <TranscriptText>string</TranscriptText>
  <TranscriptStartTime>string</TranscriptStartTime>
  <TranscriptEndTime>string</TranscriptEndTime>
  <TranscriptType>string</TranscriptType>
  <IsModerated>boolean</IsModerated>
  <IsRejected>boolean</IsRejected>
  <AdTag>string</AdTag>
  <Sequence>string</Sequence>
  <Keywords>string</Keywords>
  <UploadDateTime>dateTime</UploadDateTime>
  <ExpiryDateTime>dateTime</ExpiryDateTime>
  <VideoPath>string</VideoPath>
  <ThumnailPath>string</ThumnailPath>
  <ContentTypeID>int</ContentTypeID>
  <TypeTitle>string</TypeTitle>
  <TypeDescription>string</TypeDescription>
  <IsScheduled>boolean</IsScheduled>
  <Link>string</Link>
  <VideoLink>boolean</VideoLink>
  <TitleLink>boolean</TitleLink>
  <DoNotShowInPlaylist>boolean</DoNotShowInPlaylist>
  <NoClickAway>boolean</NoClickAway>
  <PlaylistScheduled>string</PlaylistScheduled>
  <PlaylistTimeHH>int</PlaylistTimeHH>
  <PlaylistTimeMM>int</PlaylistTimeMM>
  <PlaylistTimeType>string</PlaylistTimeType>
  <PlayerID>int</PlayerID>
  <MetaData_AuthoringDateTime>dateTime</MetaData_AuthoringDateTime>
  <IsExpired>int</IsExpired>
  <IsAuthorize>int</IsAuthorize>
  <Categories>
    <Category>
      <ID>int</ID>
      <ParentID>int</ParentID>
      <Title>string</Title>
      <Description>string</Description>
      <ChannelID>int</ChannelID>
      <Error>
        <Status>string</Status>
        <Message>string</Message>
        <ResultCode>string</ResultCode>
      </Error>
    </Category>
    <Category>
      <ID>int</ID>
      <ParentID>int</ParentID>
      <Title>string</Title>
      <Description>string</Description>
      <ChannelID>int</ChannelID>
      <Error>
        <Status>string</Status>
        <Message>string</Message>
        <ResultCode>string</ResultCode>
      </Error>
    </Category>
  </Categories>
  <Error>
    <Status>string</Status>
    <Message>string</Message>
    <ResultCode>string</ResultCode>
  </Error>
</Content>