This tool is part of the Content Tools category.

Parameters

NameTypeRequiredDescription
user_account_idstringYesThe ID of the user account to get content for
limitnumberNoMaximum number of content items to return

Example Request

{
    "tool": "getContentsByUserAccountId",
    "params": {
        "user_account_id": "USER_ACCOUNT_ID",
        "limit": 10
    }
}

Example Response

{
    "content": [
        {
            "id": "content_123",
            "title": "My Post",
            "type": "INSTAGRAM_POST",
            "published_at": "2024-05-01T12:00:00Z",
            // ... other fields ...
        }
    ]
}

Usage Notes

  • Only content items belonging to the specified user account and tenant will be returned.
  • Use the limit parameter to control pagination.

See the Content Tools for more tools in this category.