Open
Description
Problem to solve
I'd like to upload the base64 of a file in one of the parameter of the body
# Upload picture
POST {{PUBLIC_URL}}/public-picture-api/my-pictures
Authorization: Bearer {{id_token}}
{
"file": "//TODO",
"fileType": "JPEG",
"title": "{{title}}",
"tags": ["{{tag}}"]
}
At the moment, i must put the whole JSON body in a file ...