Skip to main content
GET
/
support
/
media-size-limits
Get info about allowed media file sizes in megabytes.
curl --request GET \
  --url https://1-some-client.some-server.healvi-chat/third-party/v1/support/media-size-limits \
  --header 'Authorization: Bearer <token>'
{
  "data": {
    "regular_mb": {
      "image": 123,
      "video": 123,
      "audio": 123,
      "document": 123
    },
    "temporary_upload_mb": {
      "image": 123,
      "video": 123,
      "audio": 123,
      "document": 123
    }
  }
}

Authorizations

Authorization
string
header
required

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

Response

200 - application/json

Success

data
object