# Synchronously add/update content **POST /content/sync** Add or update content to the platform synchronously. Only use this for low volume use-cases. For high availablity and higher rate limits use the async /content endpoint. ## Servers - Lasso Moderation API V1: https://api.lassomoderation.com/api/v1 (Lasso Moderation API V1) ## Parameters ### Headers - **Authorization** (string) Bearer token, to generate see https://app.lassomoderation.com/settings ### Body: application/json (object) User, subcategory & category will be automatically created in Lasso if they don't exist yet. - **content_id** (string) - **parent_content_id** (string) Set this if this is a reply to another comment/chat message - **created_at** (string(date-time)) ISO Date e.g. 2022-07-21T18:12:39.000Z https://en.wikipedia.org/wiki/ISO_8601 - **category** (object) Model for a category that a message can be part of. If the category does not yet exist in Lasso it will be created. - **subcategory** (object) Model for a subcategory that a message can be part of. If the subcategory does not yet exist in Lasso it will be created. - **user** (object) Model for a user that you can send to Lasso. If the id of the user does not yet exist a new user will be made. - **text** (string) - **image_urls** (array[string]) - **video_urls** (array[string]) - **audio_urls** (array[string]) - **metadata** (object) - **published_at** (string) (optional) ISO Date e.g. 2022-07-21T18:12:39.000Z https://en.wikipedia.org/wiki/ISO_8601 This field can be used to let Lasso know this content has not yet been published. - If the field is set to `null` the user is marked as not yet published. - If the field is set to a date, we use that date as the published date. - If the field is not specified, we assume the created at date as the published date. **Note**: this field can only be set when creating the content, use the publish endpoint to publish the content. ## Responses ### 200 OK #### Body: application/json (object) - **success** (boolean) - **status** (string) The status of an object - **timeout** (boolean) Only set when the synchronous request times out. In this case use the content status to poll the status of the content. - **actions** (array[object]) Note: This is not set when the request times out [Powered by Bump.sh](https://bump.sh)