Oracle Siebel Activities API

Operations on Activity business objects for managing tasks, appointments, call logs, and other scheduled items

OpenAPI Specification

oracle-siebel-activities-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Oracle Siebel REST Activities API
  description: RESTful API for accessing Siebel CRM business objects, business services, and repository objects. The Siebel REST API supports standard CRUD operations using HTTP verbs (GET, POST, PUT, DELETE) against business object data resources, business service invocation, and workspace-based repository management. Responses are available in JSON or XML format, and the API provides built-in metadata discovery through describe endpoints that return OpenAPI-compatible specifications.
  version: '1.0'
  contact:
    name: Oracle Support
    url: https://support.oracle.com
  termsOfService: https://www.oracle.com/legal/terms.html
servers:
- url: https://{siebel-server}/siebel/v1.0
  description: Siebel Application Interface Server
  variables:
    siebel-server:
      default: localhost
      description: Hostname and port of the Siebel Application Interface running the siebel-rest.war deployment on Apache Tomcat
security:
- basicAuth: []
- oauth2: []
tags:
- name: Activities
  description: Operations on Activity business objects for managing tasks, appointments, call logs, and other scheduled items
paths:
  /data/Activity/Activity:
    get:
      operationId: listActivities
      summary: List activities
      description: Retrieve a collection of Activity business component records from the Activity business object. Returns activity details including type, status, due date, description, and associated account and contact information.
      tags:
      - Activities
      parameters:
      - $ref: '#/components/parameters/fields'
      - $ref: '#/components/parameters/searchspec'
      - $ref: '#/components/parameters/ChildLinks'
      - $ref: '#/components/parameters/uniformresponse'
      - $ref: '#/components/parameters/ViewMode'
      - $ref: '#/components/parameters/PageSize'
      - $ref: '#/components/parameters/StartRowNum'
      responses:
        '200':
          description: Activities retrieved successfully
          content:
            application/json:
              schema:
                type: object
                properties:
                  items:
                    type: array
                    items:
                      $ref: '#/components/schemas/Activity'
                  Link:
                    type: array
                    items:
                      $ref: '#/components/schemas/LinkObject'
        '204':
          description: No activities found
        '401':
          description: Authentication credentials missing or invalid
    post:
      operationId: createActivity
      summary: Create an activity
      description: Insert a new Activity business component record into the Activity business object.
      tags:
      - Activities
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ActivityInput'
      responses:
        '201':
          description: Activity created successfully
        '400':
          description: Invalid request body or missing required fields
        '401':
          description: Authentication credentials missing or invalid
  /data/Activity/Activity/{ActivityId}:
    get:
      operationId: getActivity
      summary: Get an activity by ID
      description: Retrieve a single Activity business component record by its unique row identifier.
      tags:
      - Activities
      parameters:
      - $ref: '#/components/parameters/ActivityId'
      - $ref: '#/components/parameters/fields'
      - $ref: '#/components/parameters/ChildLinks'
      responses:
        '200':
          description: Activity retrieved successfully
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Activity'
        '401':
          description: Authentication credentials missing or invalid
        '404':
          description: Activity not found
    put:
      operationId: upsertActivity
      summary: Upsert an activity
      description: Insert or update an Activity business component record by its unique row identifier.
      tags:
      - Activities
      parameters:
      - $ref: '#/components/parameters/ActivityId'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/ActivityInput'
      responses:
        '200':
          description: Activity upserted successfully
        '400':
          description: Invalid request body
        '401':
          description: Authentication credentials missing or invalid
    delete:
      operationId: deleteActivity
      summary: Delete an activity
      description: Delete an Activity business component record by its unique row identifier.
      tags:
      - Activities
      parameters:
      - $ref: '#/components/parameters/ActivityId'
      responses:
        '200':
          description: Activity deleted successfully
        '401':
          description: Authentication credentials missing or invalid
        '404':
          description: Activity not found
components:
  parameters:
    PageSize:
      name: PageSize
      in: query
      required: false
      description: Maximum number of records to return in the response. Controls pagination by limiting the result set size.
      schema:
        type: integer
        minimum: 1
        examples:
        - 20
    ViewMode:
      name: ViewMode
      in: query
      required: false
      description: Access control mode that determines which records are visible. Personal returns records owned by the user, Sales Rep uses position-based access, and Organization uses organization-level visibility rules.
      schema:
        type: string
        enum:
        - Personal
        - Sales Rep
        - Organization
    ChildLinks:
      name: ChildLinks
      in: query
      required: false
      description: Comma-separated list of child business component names to include as link references in the response. Use 'None' to suppress all child links.
      schema:
        type: string
        examples:
        - Contact,Opportunity
        - None
    uniformresponse:
      name: uniformresponse
      in: query
      required: false
      description: When set to 'yes' or 'y', forces the response to always use the JSON array format with an items wrapper, regardless of whether the result contains a single record or multiple records.
      schema:
        type: string
        enum:
        - 'yes'
        - 'no'
        - y
        - n
    ActivityId:
      name: ActivityId
      in: path
      required: true
      description: Unique row identifier for the Activity record
      schema:
        type: string
    fields:
      name: fields
      in: query
      required: false
      description: Comma-separated list of field names to include in the response. When specified, only the listed fields are returned instead of all available fields.
      schema:
        type: string
        examples:
        - Name,Location,Account Status
    StartRowNum:
      name: StartRowNum
      in: query
      required: false
      description: Zero-based index of the first record to return. Used in combination with PageSize for pagination through large result sets.
      schema:
        type: integer
        minimum: 0
        default: 0
    searchspec:
      name: searchspec
      in: query
      required: false
      description: Siebel search specification expression for filtering records. Uses Siebel query language syntax with field names in square brackets and standard comparison operators.
      schema:
        type: string
        examples:
        - '[Name] LIKE ''B*'' AND [Status] = ''Active'''
  schemas:
    LinkObject:
      type: object
      description: HATEOAS link object providing navigation references to related Siebel REST API resources
      properties:
        rel:
          type: string
          description: Relationship type (self, child, parent)
          enum:
          - self
          - child
          - parent
        href:
          type: string
          format: uri
          description: Full URL to the related resource
        name:
          type: string
          description: Name of the related business component
    Activity:
      type: object
      description: A Siebel CRM Activity business component record representing a task, appointment, call log, or other scheduled item
      properties:
        Id:
          type: string
          description: Unique row identifier for the activity record
        Type:
          type: string
          description: Activity type (e.g., Task, Appointment, Call)
        Description:
          type: string
          description: Activity description
        Status:
          type: string
          description: Current status of the activity
        Priority:
          type: string
          description: Priority level
        Due:
          type: string
          description: Due date for the activity
        Planned:
          type: string
          description: Planned date and time
        Account:
          type: string
          description: Associated account name
        Account Id:
          type: string
          description: Row identifier of the associated account
        Contact First Name:
          type: string
          description: First name of the associated contact
        Contact Last Name:
          type: string
          description: Last name of the associated contact
        Owner:
          type: string
          description: Owner or assignee
        Link:
          type: array
          description: HATEOAS links to related resources
          items:
            $ref: '#/components/schemas/LinkObject'
    ActivityInput:
      type: object
      description: Input payload for creating or updating an Activity record
      required:
      - Type
      - Description
      properties:
        Type:
          type: string
          description: Activity type (e.g., Task, Appointment, Call)
        Description:
          type: string
          description: Activity description
        Status:
          type: string
          description: Current status
        Priority:
          type: string
          description: Priority level
        Due:
          type: string
          description: Due date
        Planned:
          type: string
          description: Planned date and time
        Account:
          type: string
          description: Associated account name
  securitySchemes:
    basicAuth:
      type: http
      scheme: basic
      description: HTTP Basic Authentication using Siebel CRM user credentials encoded as Base64 in the Authorization header
    oauth2:
      type: oauth2
      description: OAuth 2.0 authentication for token-based access to the Siebel REST API
      flows:
        authorizationCode:
          authorizationUrl: https://{siebel-server}/siebel/v1.0/auth/authorize
          tokenUrl: https://{siebel-server}/siebel/v1.0/auth/token
          scopes: {}
externalDocs:
  description: Oracle Siebel REST API Documentation
  url: https://docs.oracle.com/cd/E95904_01/books/RestAPI/overview-of-using-the-siebel-rest-api.html