action gettyimages_get_v3_asset_changes_channels { label: "Get a list of asset change notification channels." description: "# Get Partner Channels\n\nRetrieves the channel data for the partner. This data can be used to populate the channel_id parameter in the Put Asset Changes query.\n\n## Quickstart\n\nYou'll need an API key and an access token to use this resource.\n\nPartners who have a channel that has been removed should contact their sales representative to be set up again.\n\n" provider: gettyimages method: GET path: "/v3/asset-changes/channels" encoding: json output: { type: "array" items: { type: "object" properties: { AssetChangeType: { type: "string" } AssetFamily: { type: "string" enum: ["NotSet", "Editorial", "Creative", "Both"] } AssetType: { type: "string" enum: ["NotSet", "Image", "Film", "Music"] } ChannelId: { type: "integer" format: "int32" } CreateDateUtc: { type: "string" format: "date-time" } Metadata: { type: "string" } NotificationCount: { type: "integer" format: "int32" } OldestChangeNotificationDateUtc: { type: "string" format: "date-time" } } additionalProperties: false } } }