images-reframe

Reframe an image with Ideogram 3.0, by asset id or by uploaded bytes

Expand an image to a new Ideogram 3.0 resolution. The source pixels are preserved in the center and Ideogram fills the new area. Supply exactly one source: an AssetIdentifier reference (image_asset_identifier) or raw image bytes (image, multipart requests only). Supplying both forms, or neither, is rejected.

Optional style controls are mutually exclusive. Supply at most one of style_preset, style_codes, style_reference_asset_identifiers, or raw style_reference_images (multipart requests only). Each style reference transport accepts at most 10 images.

By default the request blocks until the images are ready and returns them in data. Set async to true to return immediately, then poll GET /v1/generations/{generation_id}.

post/v2/image/reframe/ideogram-3

Query parameters

dry_runboolean

When true, the request is validated and priced but not run: nothing is generated, stored, or billed, and no safety review is performed. The response is a PriceQuote object instead of the usual response for this endpoint. Send exactly the request you would send to generate, so the quote reflects the same options.

Request body

imagestring binary

The JPEG, PNG, or WEBP image to reframe (max 25MB), as raw bytes. Multipart requests only. Provide exactly one of image_asset_identifier or image.

resolution'512x1536' | '576x1408' | '576x1472' | '576x1536' | '640x1344' | '640x1408' | '640x1472' | '640x1536' | '704x1152' | '704x1216' | '704x1280' | '704x1344' | '704x1408' | '704x1472' | '736x1312' | '768x1088' | '768x1216' | '768x1280' | '768x1344' | '800x1280' | '832x960' | '832x1024' | '832x1088' | '832x1152' | '832x1216' | '832x1248' | '864x1152' | '896x960' | '896x1024' | '896x1088' | '896x1120' | '896x1152' | '960x832' | '960x896' | '960x1024' | '960x1088' | '1024x832' | '1024x896' | '1024x960' | '1024x1024' | '1088x768' | '1088x832' | '1088x896' | '1088x960' | '1120x896' | '1152x704' | '1152x832' | '1152x864' | '1152x896' | '1216x704' | '1216x768' | '1216x832' | '1248x832' | '1280x704' | '1280x768' | '1280x800' | '1312x736' | '1344x640' | '1344x704' | '1344x768' | '1408x576' | '1408x640' | '1408x704' | '1472x576' | '1472x640' | '1472x704' | '1536x512' | '1536x576' | '1536x640' required

The resolutions supported for Ideogram 3.0.

num_imagesinteger

The number of images to generate.

seedinteger

Random seed. Set for reproducible generation.

rendering_speed'turbo' | 'default' | 'quality'
style_preset'80s_illustration' | '90s_nostalgia' | 'abstract_organic' | 'analog_nostalgia' | 'art_brut' | 'art_deco' | 'art_poster' | 'aura' | 'avant_garde' | 'bauhaus' | 'blueprint' | 'blurry_motion' | 'bright_art' | 'c4d_cartoon' | 'childrens_book' | 'collage' | 'coloring_book_i' | 'coloring_book_ii' | 'cubism' | 'dark_aura' | 'doodle' | 'double_exposure' | 'dramatic_cinema' | 'editorial' | 'emotional_minimal' | 'ethereal_party' | 'expired_film' | 'flat_art' | 'flat_vector' | 'forest_reverie' | 'geo_minimalist' | 'glass_prism' | 'golden_hour' | 'graffiti_i' | 'graffiti_ii' | 'halftone_print' | 'high_contrast' | 'hippie_era' | 'iconic' | 'japandi_fusion' | 'jazzy' | 'long_exposure' | 'magazine_editorial' | 'minimal_illustration' | 'mixed_media' | 'monochrome' | 'nightlife' | 'oil_painting' | 'old_cartoons' | 'paint_gesture' | 'pop_art' | 'retro_etching' | 'riviera_pop' | 'spotlight_80s' | 'stylized_red' | 'surreal_collage' | 'travel_poster' | 'vintage_geo' | 'vintage_poster' | 'watercolor' | 'weird' | 'woodblock_print'

A predefined style preset that applies a specific artistic style to the generated image.

style_codesStyleCode[]

A list of 8-character hexadecimal codes representing the style of the image. Refer to each endpoint for supported combinations with style types, presets, and reference images.

style_reference_imagesstring[]

JPEG, PNG, or WEBP style reference images (max 10, max 25MB each), as raw bytes. Multipart requests only. Cannot be combined with a style preset, style codes, or referenced style assets.

asyncboolean

Return immediately instead of waiting for reframed images.

Example request

{
  "image_asset_identifier": {
    "asset_type": "RESPONSE",
    "asset_id": "7uS_VESkRI6O3-sVgHQp_A"
  },
  "resolution": "1280x800",
  "seed": 12345,
  "style_preset": "bright_art",
  "color_palette": {
    "name": "pastel"
  },
  "style_codes": [
    "AAFF5733",
    "0133FF57",
    "DE3357FF"
  ],
  "style_reference_asset_identifiers": [
    {
      "asset_type": "RESPONSE",
      "asset_id": "7uS_VESkRI6O3-sVgHQp_A"
    }
  ]
}

Response

The reframed images, or an acknowledgement for an asynchronous request.

generation_idstring required

URL-safe base64 ID of the accepted generation. Accepted by the GET /v1/generations/{generation_id} polling endpoint.

seedinteger required

Random seed. Set for reproducible generation.

Example response

{
  "data": [
    {
      "seed": 12345,
      "prompt": "prompt",
      "resolution": "1024x1024",
      "url": "https://openapi-generator.tech",
      "is_image_safe": true
    },
    {
      "seed": 12345,
      "prompt": "prompt",
      "resolution": "1024x1024",
      "url": "https://openapi-generator.tech",
      "is_image_safe": true
    }
  ],
  "seed": 12345,
  "generation_id": "generation_id"
}

Changes

Changed in 3 of the 33 revisions of this API.132139

    • ○

      added the optional property to the response with the status

      response-optional-property-added

    • ○

      added the optional property to the response with the status

      response-optional-property-added

    • ○

      added the optional property to the response with the status

      response-optional-property-added

    • ○

      added the optional property to the response with the status

      response-optional-property-added

  • 4e95197be44a132134See the full diff
    • ▲

      removed the enum value 80S_ILLUSTRATION of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value 80S_ILLUSTRATION of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value 90S_NOSTALGIA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value 90S_NOSTALGIA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ABSTRACT_ORGANIC of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ABSTRACT_ORGANIC of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ANALOG_NOSTALGIA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ANALOG_NOSTALGIA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_BRUT of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_BRUT of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_DECO of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_DECO of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_POSTER of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ART_POSTER of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value AURA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value AURA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value AVANT_GARDE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value AVANT_GARDE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value BAUHAUS of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value BAUHAUS of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value BLUEPRINT of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value BLUEPRINT of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value BLURRY_MOTION of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value BLURRY_MOTION of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value BRIGHT_ART of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value BRIGHT_ART of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value C4D_CARTOON of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value C4D_CARTOON of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value CHILDRENS_BOOK of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value CHILDRENS_BOOK of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLLAGE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLLAGE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLORING_BOOK_I of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLORING_BOOK_I of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLORING_BOOK_II of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value COLORING_BOOK_II of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value CUBISM of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value CUBISM of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value DARK_AURA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value DARK_AURA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value DEFAULT of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value DEFAULT of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value DOODLE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value DOODLE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value DOUBLE_EXPOSURE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value DOUBLE_EXPOSURE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value DRAMATIC_CINEMA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value DRAMATIC_CINEMA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value EDITORIAL of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value EDITORIAL of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value EMOTIONAL_MINIMAL of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value EMOTIONAL_MINIMAL of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ETHEREAL_PARTY of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ETHEREAL_PARTY of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value EXPIRED_FILM of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value EXPIRED_FILM of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value FLAT_ART of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value FLAT_ART of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value FLAT_VECTOR of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value FLAT_VECTOR of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value FOREST_REVERIE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value FOREST_REVERIE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value GEO_MINIMALIST of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value GEO_MINIMALIST of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value GLASS_PRISM of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value GLASS_PRISM of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value GOLDEN_HOUR of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value GOLDEN_HOUR of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value GRAFFITI_I of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value GRAFFITI_I of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value GRAFFITI_II of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value GRAFFITI_II of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value HALFTONE_PRINT of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value HALFTONE_PRINT of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value HIGH_CONTRAST of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value HIGH_CONTRAST of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value HIPPIE_ERA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value HIPPIE_ERA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value ICONIC of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value ICONIC of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value JAPANDI_FUSION of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value JAPANDI_FUSION of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value JAZZY of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value JAZZY of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value LONG_EXPOSURE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value LONG_EXPOSURE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value MAGAZINE_EDITORIAL of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value MAGAZINE_EDITORIAL of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value MINIMAL_ILLUSTRATION of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value MINIMAL_ILLUSTRATION of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value MIXED_MEDIA of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value MIXED_MEDIA of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value MONOCHROME of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value MONOCHROME of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value NIGHTLIFE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value NIGHTLIFE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value OIL_PAINTING of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value OIL_PAINTING of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value OLD_CARTOONS of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value OLD_CARTOONS of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value PAINT_GESTURE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value PAINT_GESTURE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value POP_ART of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value POP_ART of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value QUALITY of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value QUALITY of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value RETRO_ETCHING of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value RETRO_ETCHING of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value RIVIERA_POP of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value RIVIERA_POP of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value SPOTLIGHT_80S of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value SPOTLIGHT_80S of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value STYLIZED_RED of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value STYLIZED_RED of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value SURREAL_COLLAGE of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value SURREAL_COLLAGE of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value TRAVEL_POSTER of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value TRAVEL_POSTER of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value TURBO of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value TURBO of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value VINTAGE_GEO of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value VINTAGE_GEO of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value VINTAGE_POSTER of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value VINTAGE_POSTER of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value WATERCOLOR of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value WATERCOLOR of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value WEIRD of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value WEIRD of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed the enum value WOODBLOCK_PRINT of the request property (media type: multipart/form-data)

      request-property-enum-value-removed

    • ▲

      removed the enum value WOODBLOCK_PRINT of the request property (media type: application/json)

      request-property-enum-value-removed

    • ▲

      removed from the request property oneOf list (media type: multipart/form-data)

      request-property-one-of-removed

    • ▲

      removed from the request property oneOf list (media type: application/json)

      request-property-one-of-removed

    • ○

      the request property default value changed from DEFAULT to default (media type: multipart/form-data)

      request-property-default-value-changed

    • ○

      the request property default value changed from DEFAULT to default (media type: application/json)

      request-property-default-value-changed

    • ○

      added the new 80s_illustration enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new 80s_illustration enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new 90s_nostalgia enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new 90s_nostalgia enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new abstract_organic enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new abstract_organic enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new analog_nostalgia enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new analog_nostalgia enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new art_brut enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new art_brut enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new art_deco enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new art_deco enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new art_poster enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new art_poster enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new aura enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new aura enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new avant_garde enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new avant_garde enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new bauhaus enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new bauhaus enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new blueprint enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new blueprint enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new blurry_motion enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new blurry_motion enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new bright_art enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new bright_art enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new c4d_cartoon enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new c4d_cartoon enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new childrens_book enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new childrens_book enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new collage enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new collage enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new coloring_book_i enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new coloring_book_i enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new coloring_book_ii enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new coloring_book_ii enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new cubism enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new cubism enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new dark_aura enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new dark_aura enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new default enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new default enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new doodle enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new doodle enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new double_exposure enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new double_exposure enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new dramatic_cinema enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new dramatic_cinema enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new editorial enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new editorial enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new emotional_minimal enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new emotional_minimal enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new ethereal_party enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new ethereal_party enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new expired_film enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new expired_film enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new flat_art enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new flat_art enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new flat_vector enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new flat_vector enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new forest_reverie enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new forest_reverie enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new geo_minimalist enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new geo_minimalist enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new glass_prism enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new glass_prism enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new golden_hour enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new golden_hour enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new graffiti_i enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new graffiti_i enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new graffiti_ii enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new graffiti_ii enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new halftone_print enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new halftone_print enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new high_contrast enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new high_contrast enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new hippie_era enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new hippie_era enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new iconic enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new iconic enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new japandi_fusion enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new japandi_fusion enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new jazzy enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new jazzy enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new long_exposure enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new long_exposure enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new magazine_editorial enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new magazine_editorial enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new minimal_illustration enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new minimal_illustration enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new mixed_media enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new mixed_media enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new monochrome enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new monochrome enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new nightlife enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new nightlife enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new oil_painting enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new oil_painting enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new old_cartoons enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new old_cartoons enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new paint_gesture enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new paint_gesture enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new pop_art enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new pop_art enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new quality enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new quality enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new retro_etching enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new retro_etching enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new riviera_pop enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new riviera_pop enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new spotlight_80s enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new spotlight_80s enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new stylized_red enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new stylized_red enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new surreal_collage enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new surreal_collage enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new travel_poster enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new travel_poster enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new turbo enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new turbo enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new vintage_geo enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new vintage_geo enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new vintage_poster enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new vintage_poster enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new watercolor enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new watercolor enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new weird enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new weird enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added the new woodblock_print enum value to the request property (media type: multipart/form-data)

      request-property-enum-value-added

    • ○

      added the new woodblock_print enum value to the request property (media type: application/json)

      request-property-enum-value-added

    • ○

      added to the request property oneOf list (media type: multipart/form-data)

      request-property-one-of-added

    • ○

      added to the request property oneOf list (media type: application/json)

      request-property-one-of-added

    This revision also has 13 changes that name no endpoint, such as unreferenced schemas being removed. See the revision's changelog

    • ○

      endpoint added

      endpoint-added