# Fetch content replications The endpoint allow users to get details of content replication. Source or target filter is required Endpoint: GET /v2/content/replications Version: v2 Security: oauth2_as_a_user, oauth2_as_a_server ## Query parameters: - `filter.source.contentId` (integer) ID of source content. If present then source platform should also be present - `filter.source.platform` (string) Source platform type. If present then source content ID should also be present Enum: "firstup", "slack", "sharepoint" - `filter.target.contentId` (string) ID of published content. If present then target platform should also be present - `filter.target.platform` (string) Target platform type. If present then target content ID should also be present Enum: "firstup", "slack", "sharepoint" - `filter.workflowId` (string) ID of workflow ## Response 200 fields (application/json): - `data` (array, required) - `data.sourceContentId` (string) - `data.sourcePlatform` (string) - `data.targetContentId` (string) - `data.targetPlatform` (string) - `data.replicatedAt` (string) - `data.targetLocationId` (string) - `data.workflowId` (integer) ## Response 401 fields (*/*): - `errors` (array) - `errors.code` (integer) Example: 401 - `errors.title` (string) Example: "Unauthenticated" - `errors.detail` (string) Example: "Access token was not provided or not recognized." ## Response 403 fields (*/*): - `errors` (array) - `errors.code` (integer) Example: 403 - `errors.title` (string) Example: "Unauthorized" - `errors.detail` (string)