Creatopy Public API
  • Public API
    • Quickstart
    • Authentication
  • REST API
    • Overview
    • Auth
    • Exports
      • Creatives
    • Templates (Designs)
      • Elements
      • Template Sizes
      • Font variants
    • ShareLink
    • Projects
      • Project Users
    • Brand Kits
      • Brand kit assets
      • Brand kit logos
      • Brand kit media folders
      • Brand templates
    • Ad Networks
    • Ad Serving
    • Users
      • Team roles
    • Webhooks
      • Webhook action types
    • Design Versions
    • Folders
      • Move design to folder
    • Error codes
    • Designs
  • GraphQL API
    • Overview
    • Endpoints and queries
    • Postman Collection
Powered by GitBook
On this page
  • Brand kit media folders
  • Request
  • Response
  1. REST API
  2. Brand Kits

Brand kit media folders

Brand kit media folders

This endpoint makes an HTTP GET request to list brand kit's media folders.

Request

  • Method: GET

  • Endpoint: https://api.creatopy.com/v1/brandkit/mediaFolders

  • Body:

    • brandkitId (integer, required): The id of the brand kit.

    • parentId (integer): The parentId of the media folders.

curl --location 'https://api.creatopy.com/v1/brandkit/mediaFolders' \
--header 'Content-Type: application/json' \
--header 'Authorization: Bearer eyJ...' \
--data '{
    "brandkitId": 123456,
    "parentId:" 65765,
}'

Response

The response will be in JSON format with the following schema:

{
    "response": [
        {
            "id": 123,
            "name": "Assets folder 1"
        },
                {
            "id": 1234,
            "name": "Assets folder 2"
        },
    ]
}

PreviousBrand kit logosNextBrand templates

Last updated 3 months ago