class GdsApi::PublishingApi

def import(content_id, locale, content_items)

Other tags:
    See: https://github.com/alphagov/publishing-api/blob/master/doc/api.md#post-v2contentcontent_idimport -

Parameters:
  • content_items (Array) --
  • content_id (UUID) --
def import(content_id, locale, content_items)
  params = {
    history: content_items,
  }
  post_json("#{endpoint}/v2/content/#{content_id}/import?locale=#{locale}", params)
end