Producer lists can be shared between Meta Content Library and Content Library API. Researchers can see their producer lists in the Producer lists tab in Content Library. You can only share producer lists with users who have the same account type as yours.
Note: This feature is only available from version 4.0 onwards.
To share a producer list:
Select Producers lists from the left navigation bar.
Click View in the card for the producer list you want to share.
The syntax of the snapshot of the producer list that can be accessed on the API is:
/lists/producers/<api_producer_list_id>
Name | Type | Description |
---|---|---|
| String | Unique ID created in Meta Content Library representing a snapshot of the producer list |
See Data dictionary for information on data included in responses.
library(reticulate)
client <- import("metacontentlibraryapi")$MetaContentLibraryAPIClient
# set default version to latest
client$set_default_version(client$LATEST_VERSION)
# Get the response by using the API ID received by UI
response <- client$get(path="lists/producers/2024-07-22-xlyr")
# Display the json response
response$text