Skip to main content
POST
/
deal-folder
/
files
/
{file}
/
request-revision
Request a revision on a file slot (brand only)
curl --request POST \
  --url http://localhost/mogl/mogl-backend/api/deal-folder/files/{file}/request-revision \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "comment": "Please re-record with brand logo visible."
}
'
{
  "status": "success",
  "message": "Revision requested."
}

Authorizations

Authorization
string
header
required

JWT Bearer token authentication. Use the /api/login endpoint to obtain a token.

Path Parameters

file
integer
required

DealFolderFile ID (slot ID).

Example:

5

Body

application/json
comment
string
required

Brand's revision message.

Maximum string length: 2000
Example:

"Please re-record with brand logo visible."

Response

Revision requested

status
string
Example:

"success"

message
string
Example:

"Revision requested."