Skip to content

Get directory brand photo constraints

Request

Get directory brand photo constraints

curl -i -X GET \
  https://uberall.com/api/rules-engine/directory-brand-photo-constraints

Responses

Successfully retrieved directory brand photo constraints

Body*/*
statusstringrequired
Enum:"SUCCESS""PENDING""QUOTA_LIMIT_EXCEED""NOT_AUTHORIZED""FORBIDDEN""BAD_ACCESS_TOKEN""BAD_PRIVATE_KEY""BAD_PUBLIC_KEY""MISSING_PARAMETER""INVALID_PARAMETER"
messagestring

(optional) Holds further information about the response

warningsArray of strings

(optional) Holds further warnings

responseobjectrequired

The actual response object of the response

Response
{
  "status": "SUCCESS",
  "message": "string",
  "warnings": [
    "string"
  ],
  "response": {
    "photoConstraints": {
      "LOGO": {
        "minSize": 10000,
        "maxSize": 52428800,
        "minWidth": 250,
        "maxWidth": 6000,
        "maxHeight": 6000,
        "minHeight": 250,
        "maxNumber": 1,
        "ratio": null,
        "supportedTypes": [
          "image/jpeg",
          "image/png"
        ]
      }
    }
  }
}