> ## Documentation Index
> Fetch the complete documentation index at: https://help.lobyco.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Start internal CST import job

> This endpoint initiates an internal personal offers import job from Data platform.
It is called by CST and works via self-scheduling with a servicebus.



## OpenAPI

````yaml openapi/promotion-v3.json POST /v3/personaloffers
openapi: 3.0.4
info:
  title: Offer Api
  version: v3
servers:
  - url: https://{host}/promotion
    description: Your Lobyco environment
    variables:
      host:
        default: your-environment.lobyco.net
        description: >-
          The API host for your Lobyco environment. Replace it with the host you
          were given — this placeholder does not resolve.
security:
  - Bearer: []
paths:
  /v3/personaloffers:
    post:
      tags:
        - PersonalOffers
      summary: Start internal CST import job
      description: >-
        This endpoint initiates an internal personal offers import job from Data
        platform.

        It is called by CST and works via self-scheduling with a servicebus.
      requestBody:
        content:
          application/json-patch+json:
            schema:
              $ref: '#/components/schemas/ImportPersonalOffersRequest'
          application/json:
            schema:
              $ref: '#/components/schemas/ImportPersonalOffersRequest'
          text/json:
            schema:
              $ref: '#/components/schemas/ImportPersonalOffersRequest'
          application/*+json:
            schema:
              $ref: '#/components/schemas/ImportPersonalOffersRequest'
      responses:
        '202':
          description: Accepted
components:
  schemas:
    ImportPersonalOffersRequest:
      required:
        - executionId
        - flowId
      type: object
      properties:
        executionId:
          minLength: 1
          type: string
        flowId:
          minLength: 1
          type: string
      additionalProperties: false
  securitySchemes:
    Bearer:
      type: apiKey
      description: >-
        Opaque Authorization header using the Bearer scheme. Example:
        "Authorization: Bearer {token}"
      name: Authorization
      in: header

````