curl --request POST \
--url https://api.example.com/media/save-staged-svg-file-generic \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"originalFilename": "some svg file.svg",
"stagedFileCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true,
"data": "<unknown>"
}For any of the chunk-saved svg files, it saves it to the system and registers it as a new SVG table record.
curl --request POST \
--url https://api.example.com/media/save-staged-svg-file-generic \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"originalFilename": "some svg file.svg",
"stagedFileCode": "3c90c3cc-0d44-4b50-8888-8dd25736052a"
}
'{
"success": true,
"data": "<unknown>"
}The access token received from the authorization server in the OAuth 2.0 flow.