Skip to main content
GET
/
warehouse
/
return
/
{return_id}
/
notes
Get Return Notes
curl --request GET \
  --url https://api.loopreturns.com/api/v1/warehouse/return/{return_id}/notes \
  --header 'X-Authorization: <api-key>'
[
  {
    "id": 123,
    "content": "<string>",
    "created_at": "<string>"
  }
]

Authorizations

X-Authorization
string
header
required

Path Parameters

return_id
integer
required

The unique identifier associated with the return.

Response

Success

id
integer

The unique identifier associated with the return note.

Example:

1

content
string

The content of the note.

Example:

"This is a sample note"

created_at
string

The date and time at which the note was created, in Y-m-d H:i:s format.

Example:

"2023-08-15 13:19:20"