Skip to content

Latest commit

 

History

History
40 lines (32 loc) · 956 Bytes

File metadata and controls

40 lines (32 loc) · 956 Bytes

Custom Sounds List

Retrieves all custom sounds. It supports the #pagination parameters, alongside the #query-and-fields parameters.

URL Requires Auth HTTP Method
/api/v1/custom-sounds.list yes GET

Example Call

curl -H "X-Auth-Token: 9HqLlyZOugoStsXCUfD_0YdwnNnunAJF8V47U3QHXSq" \
     -H "X-User-Id: aobEdbYhXfu5hkeqG" \
     http://localhost:3000/api/v1/custom-sounds.list

Example Result

{
  "sounds": [
    {
      "_id": "qmdQjHZYzf4Hr7LwM",
      "name": "sound 1",
      "extension": "mp3",
      "_updatedAt": "2019-12-03T14:30:02.315Z"
    },
  ],
  "count": 1,
  "offset": 0,
  "total": 29,
  "success": true
}

Change Log

Version Description
2.4.0 Added