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, and only in Researcher Platform.
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 API ID created via UI for a snapshot of the producer list |
Name | Type | Description |
---|---|---|
| String | MCL ID of the shared producer list |
| String | Name of the shared producer list |
| String | Platform of the shared producer list (Facebook or Instagram) |
| String | MCL ID of the producer in the producer list |
| String` | Type of the producer like groups, pages, events, profiles, etc. |
| String | `Name of the producer |
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