List

Resolves a list of attachments created for given avatar.

GET /avatars/{AVATAR_ID}/attachments

Request

curl -X GET "https://api.loomai.com/v0.5/avatars/{AVATAR_ID}/attachments"

Response

On success the endpoint returns HTTP 200 OK as well as a JSON body containing a list of attachments.

{
  "entries": [
    {
      "id": int64,
      "type": "string",
      "name": "string",
      "url": "string",
      "updated_at": "string" // ISO-8601 DATETIME
    },
    ...
  ]
}

Last updated