curl --request POST \
--url https://api.example.com/displaymode/fillerobjectsvg/save-with-svg \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"languageID": 1,
"animationTriggerTypeID": 1,
"animationTypeID": 1,
"isAnimationLooped": true,
"svgid": null,
"svgCode": null,
"svgPointer": "<string>",
"originalFilename": "some svg file.svg",
"fillerObjectSVGTitle": null,
"rgba": "rgba(123,123,123,0.5)",
"size": 1,
"rotation": null,
"opacity": null,
"borderRadius": null
}
'{
"success": true,
"data": "<unknown>"
}Save display mode filler object of type ‘svg’, allowing the underlying SVG to be saved at the same time.
curl --request POST \
--url https://api.example.com/displaymode/fillerobjectsvg/save-with-svg \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"languageID": 1,
"animationTriggerTypeID": 1,
"animationTypeID": 1,
"isAnimationLooped": true,
"svgid": null,
"svgCode": null,
"svgPointer": "<string>",
"originalFilename": "some svg file.svg",
"fillerObjectSVGTitle": null,
"rgba": "rgba(123,123,123,0.5)",
"size": 1,
"rotation": null,
"opacity": null,
"borderRadius": null
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.
the uploaded URL path of the svg file after it has been uploaded into blob storage.