V9.Common:Recipient

Jump to: navigation, search

Recipient

Contains information about the recipient of an award or nomination.

Elements

NameTypeDescription
CreditHandle Handle Database ID of the person or organization.
DataAvailabilityFlags Integer Sum of the bit mask values that indicate what data is available about the celebrity. For example: if Summary and Credits data are available, then DataAvailbilityFlags will equal HasSummary + HasCredits (2 + 16) or 18.
HasReview
HasSummary
HasImages
HasAwards
16 HasCredits
32 HasVideo
64 HasSimilar
128 HasTVSeason
256 HasTVEpisodes
FullName String Name of the person or organization.
IsCelebrity Boolean Whether the person is a celebrity: true or false.
IsOrganization Boolean Whether the recipient is an organization: true or false.

XML Response Example

<Recipient FullName="Billy Bob Thornton" DataAvailabilityFlags="12">
   <CreditHandle>
      <Id>102017</Id>
      <ProviderId>2</ProviderId>
   </CreditHandle>
   <IsCelebrity>true</IsCelebrity>
   <IsOrganization>false</IsOrganization>
</Recipient>

JSON Response Example

JSON responses are available from our REST TV Listings service.
{
   "FullName":"Billy Bob Thornton",
   "DataAvailabilityFlags":"12",
   "CreditHandle":{
      "Id":"102017",
      "ProviderId":"2"
   },
   "IsCelebrity":"true",
   "IsOrganization":"false"
}
 
Personal tools