This endpoint makes an HTTP GET request to list brand kit's media folders.
Method: GET
Endpoint: https://api.thebrief.ai/v1/brandkit/mediaFolders
https://api.thebrief.ai/v1/brandkit/mediaFolders
Query Parameters:
brandkitId (integer, required): The id of the brand kit.
brandkitId
parentId(integer, optional): The parentId of the media folders.
parentId
curl --location 'https://api.thebrief.ai/v1/brandkit/mediaFolders' \ --header 'Content-Type: application/json' \ --header 'Authorization: Bearer eyJ...' \ --data '{ "brandkitId": 123456, "parentId:" 65765, }'
The response will be in JSON format with the following schema:
Last updated 4 months ago
{ "response": [ { "id": 123, "name": "Assets folder 1" }, { "id": 1234, "name": "Assets folder 2" }, ] }