Skip to main content
POST
/
admin
/
concat
/
feature-and-pair
Allows admins to feature an ism and pair it instantly with an image genre release ID in one click.
curl --request POST \
  --url https://api.example.com/admin/concat/feature-and-pair \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "concatCode": null,
  "concatSlug": null,
  "concatID": 19382,
  "isFeatured": true,
  "imageGenreReleaseID": 123,
  "originMediaID": 123,
  "treatedMediaID": 123
}
'
{
  "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
concatCode
string<uuid>
concatSlug
string | null
concatID
integer<int32> | null
default:19382
imageGenreReleaseID
integer<int32> | null
originMediaID
integer<int32> | null
treatedMediaID
integer<int32> | null

Response

Success

success
boolean
data
unknown