curl --request POST \
--url https://api.example.com/displaymode/fillerpattern/save-with-svg \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"fillerPatternID": null,
"borderRadius": null,
"animationTriggerTypeID": 1,
"animationTypeID": 1,
"isAnimationLooped": true,
"languageID": 1,
"svgid": null,
"svgCode": null,
"svgPointer": null,
"bytes": 1234,
"originalFilename": "some svg file.svg",
"fillerPatternTitle": null,
"rgba": null,
"isRandomSize": null,
"size": null,
"spacing": null,
"rotation": null,
"opacity": null,
"base64String": null
}
'{
"success": true,
"data": "<unknown>"
}Save display mode filler pattern, allowing the underlying SVG to be saved at the same time.
curl --request POST \
--url https://api.example.com/displaymode/fillerpattern/save-with-svg \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"displayModeReleaseID": 123,
"fillerPatternID": null,
"borderRadius": null,
"animationTriggerTypeID": 1,
"animationTypeID": 1,
"isAnimationLooped": true,
"languageID": 1,
"svgid": null,
"svgCode": null,
"svgPointer": null,
"bytes": 1234,
"originalFilename": "some svg file.svg",
"fillerPatternTitle": null,
"rgba": null,
"isRandomSize": null,
"size": null,
"spacing": null,
"rotation": null,
"opacity": null,
"base64String": 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.
the number of bytes in the svg file. not the actual bytes.