Skip to main content
POST
/
displaymode
/
image-genre
/
action-config
/
save
Saves one (or many) action configuration entries for an Image Genre Release ID.
curl --request POST \
  --url https://api.example.com/displaymode/image-genre/action-config/save \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "imageGenreReleaseID": 123,
  "imageGenreActionConfigs": [
    {
      "imageGenreActionConfigID": null,
      "sourceDetectedTypeText": null,
      "sourceDetectedTypeID": null,
      "sourceTypeID": 123,
      "languageID": 123,
      "actionConfigTypeCode": null,
      "destinationPrompt": null,
      "destinationPromptID": null,
      "destinationMediaCode": null,
      "actionConfigPlacementTypeCode": null,
      "actionConfigPositionTypeCode": null,
      "imageGenreActionConfigTemplateID": 123,
      "destinationRenderEffectTypeID": 123,
      "destinationTypeID": 123,
      "sizeRatio": null,
      "objectQuantity": null,
      "overlay": false,
      "smartPlacement": false,
      "mergeLevel": null
    }
  ]
}
'
{
  "success": true,
  "data": "<unknown>"
}

Authorizations

Authorization
string
header
required

The access token received from the authorization server in the OAuth 2.0 flow.

Body

application/json
imageGenreReleaseID
integer<int32>
imageGenreActionConfigs
object[] | null

Response

Success

success
boolean
data
unknown