dipp REST API
    dipp REST API
    • Welcome to dipp REST API
    • OAuth Integration
      • Dipp OAuth Integration Guide
      • OpenID Connect Discovery
        GET
      • Authorization Endpoint
        GET
      • Token Endpoint
        POST
      • UserInfo Endpoint
        GET
      • UserInfo Endpoint (POST)
        POST
      • Token Revocation Endpoint
        POST
      • JSON Web Key Set
        GET
    • Get brands
      GET
    • Get layouts
      GET
    • Download CSV template
      GET
    • Get current quotation
      GET
    • Create campaign
      POST
    • Get campaigns
      GET
    • Download product bundle image by data
      POST

      Get layouts

      GET
      /brand-api/resource/layouts
      Retrieves a list of layouts for a brand.

      Request

      Authorization
      Add parameter in header
      X-API-KEY
      Example:
      X-API-KEY: ********************
      Query Params

      Request Code Samples

      Shell
      JavaScript
      Java
      Swift
      Go
      PHP
      Python
      HTTP
      C
      C#
      Objective-C
      Ruby
      OCaml
      Dart
      R
      Request Request Example
      Shell
      JavaScript
      Java
      Swift
      curl --location -g --request GET 'https://api.withdipp.com/brand-api/resource/layouts?brand_uuid=&page=1&page_size=10&sort=created_at&order=desc' \
      --header 'X-API-KEY: <api-key>'

      Responses

      🟢200OK
      application/json
      Error
      Body

      Example
      {
          "layouts": [
              {
                  "uuid": "409c7022-d3be-41b6-9920-006206acd9e8",
                  "name": "name",
                  "preview_url": "http://example.com",
                  "created_at": "2021-01-01T00:00:00.000Z"
              }
          ],
          "meta": {
              "page": 1,
              "page_size": 10,
              "total_count": 100,
              "total_pages": 10
          }
      }
      🟢200Success
      🟠400Bad Request
      Modified at 2025-08-29 07:22:38
      Previous
      Get brands
      Next
      Download CSV template
      Built with