OBJECT

CreateMultiviewContentAttributeImageUploadConfigPayload

Payload contains the upload ID and URL, as well as the URL to access the uploaded image.

link GraphQL Schema definition

1type CreateMultiviewContentAttributeImageUploadConfigPayload {
2
3# The channel for which the content attribute belongs to.
4channel: Channel
5
6# The URL to access this image once uploaded.
7imageURL: String!
8
9# Generated unique identifier for this upload.
10uploadID: ID!
11
12# Generated unique URL to upload the image to.
13uploadURL: String!
14
15}