Create
To create a new content library you need to execute a POST request against the /libraries endpoint.
Two fields are available in the JSON body of the POST request, but none of them are required.
name - an optional text description of the library. If not set - a default one with the current date will be used - e.g. Library 07.10.2024 11:19. Please note that names cannot be duplicated.
external_id - an optional text field which you can use for cross referencing the library with some entity in your external integration.
In the response you will find the unique id which identifies the library and can later be used to upload files and create folders in the library.
1. Request (will auto-generate library name)
Response (200 OK)
As you can see a name was auto-generated based on the current date.
2. Request (will use the "name" you provided)
Response (200 OK)
Last updated