Skip to main content
POST
/
returns
/
{returnId}
/
comments
Create Return Comment
curl --request POST \
  --url https://api.getredo.com/v2.2/returns/{returnId}/comments \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "comment": {
    "message": "Item is worn."
  }
}
'
{
  "comment": {
    "message": "Item is worn."
  }
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

returnId
string
required

Return ID

Example:

"64e4d5e837572a4813b73e40"

Body

application/json
comment
Image comment · object
required

Comment with either message or image.

Example:
{ "message": "Item is worn." }

Response

Created

comment
Image comment · object
required

Comment with either message or image.

Example:
{ "message": "Item is worn." }