Get Meta Data

Retrieves the content metadata for a given account.

The request body for the /content-meta endpoint can optionally include parameters to retrieve specific metadata for the account. This includes content types, custom fields, pipelines, categories, services, labels, and tags. By including these boolean parameters in the request, you can specify which metadata you would like to retrieve for the account. This endpoint requires authentication with a JWT token or API key.

GET https://api.instantuploader.com/content-meta

Example for Agency: /content-meta/?accountId=00273d240422d0267bd17dc189d&contentTypes&customFields&pipelines&categories&services&labels&tags

Example for Account (without accountId): /content-meta/?contentTypes&customFields&pipelines&categories&services&labels&tags

Query Parameters

Name
Type
Description

contentTypes

boolean

Retrieves the content types for the account. true/false

customFields

boolean

Retrieves the custom fields for the account.

true/false

pipelines

boolean

Retrieves the pipelines for the account.

true/false

categories

boolean

Retrieves the categories for the account.

true/false

services

boolean

Retrieves the services for the account.

true/false

labels

boolean

Retrieves the labels for the account.

true/false

tags

boolean

Retrieves the tags for the account.

true/false

accountId

String

The ID of the account to retrieve all details of the account (required for Agency)

Response Format

The response will be a JSON object containing arrays of the requested metadata types. Each array will contain objects representing individual items of that metadata type.

Example response:

{
    "contentTypes": [ ... ],
    "customFields": [ ... ],
    "pipelines": [ ... ],
    "categories": [ ... ],
    "services": [ ... ],
    "labels": [ ... ],
    "tags": [ ... ]
}

Last updated