CDK Global · Arazzo Workflow

CDK Global Schedule Service Appointment

Version 1.0.0

Create a service appointment for a vehicle and read it back to confirm.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AutomotiveDealer ManagementDMSAuto RetailF&IFixed OperationsPartsCRMDigital RetailMarketplaceDeveloper PlatformEventWebhookAsyncAPIArazzoWorkflows

Provider

cdk-global

Workflows

schedule-service-appointment
Create a service appointment and confirm it by reading it back.
Creates an appointment in the service department for the supplied vehicle, customer, and requested services, then retrieves the created appointment by its identifier to verify it exists.
2 steps inputs: authorization, concerns, customerHref, dateTime, requestId, requestedServices, subscriptionId, vehicleHref outputs: appointmentId, dateTime
1
createAppointment
Create the service appointment with the supplied date/time, requested services, and optional vehicle and customer links.
2
confirmAppointment
Read the newly created appointment back by its identifier to confirm the booking was stored.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: CDK Global Schedule Service Appointment
  summary: Create a service appointment for a vehicle and read it back to confirm.
  description: >-
    Books a vehicle into the dealership service department by creating a service
    appointment with the requested date/time and services, then queries the new
    appointment by its identifier to confirm the booking was persisted. Every
    step spells out its request inline so the flow can be read and executed
    without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: createApi
  url: ../openapi/cdk-global-create-api-openapi.yml
  type: openapi
- name: queryApi
  url: ../openapi/cdk-global-query-api-openapi.yml
  type: openapi
workflows:
- workflowId: schedule-service-appointment
  summary: Create a service appointment and confirm it by reading it back.
  description: >-
    Creates an appointment in the service department for the supplied vehicle,
    customer, and requested services, then retrieves the created appointment by
    its identifier to verify it exists.
  inputs:
    type: object
    required:
    - subscriptionId
    - requestId
    - authorization
    - dateTime
    - requestedServices
    properties:
      subscriptionId:
        type: string
        description: The Fortellis Marketplace subscription identifier.
      requestId:
        type: string
        description: A correlation GUID echoed back across systems.
      authorization:
        type: string
        description: The Fortellis OAuth 2.0 bearer token (or Basic auth on the simulator).
      dateTime:
        type: string
        description: The ISO 8601 encoded date and time of the appointment.
      requestedServices:
        type: array
        description: The list of requested services to perform on the vehicle.
      vehicleHref:
        type: string
        description: The hyperlink to the Vehicle resource scheduled for the appointment.
      customerHref:
        type: string
        description: The hyperlink to the customer requesting the service.
      concerns:
        type: string
        description: Customer concerns that prompted the appointment.
  steps:
  - stepId: createAppointment
    description: >-
      Create the service appointment with the supplied date/time, requested
      services, and optional vehicle and customer links.
    operationId: createAppointment
    parameters:
    - name: Request-Id
      in: header
      value: $inputs.requestId
    - name: Subscription-Id
      in: header
      value: $inputs.subscriptionId
    - name: Authorization
      in: header
      value: $inputs.authorization
    requestBody:
      contentType: application/json
      payload:
        dateTime: $inputs.dateTime
        requestedServices: $inputs.requestedServices
        vehicleHref: $inputs.vehicleHref
        customerHref: $inputs.customerHref
        concerns: $inputs.concerns
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appointmentId: $response.body#/appointmentId
  - stepId: confirmAppointment
    description: >-
      Read the newly created appointment back by its identifier to confirm the
      booking was stored.
    operationId: queryAppointment
    parameters:
    - name: appointmentId
      in: path
      value: $steps.createAppointment.outputs.appointmentId
    - name: Request-Id
      in: header
      value: $inputs.requestId
    - name: Subscription-Id
      in: header
      value: $inputs.subscriptionId
    - name: Authorization
      in: header
      value: $inputs.authorization
    successCriteria:
    - condition: $statusCode == 200
    outputs:
      appointmentId: $response.body#/appointmentId
      dateTime: $response.body#/dateTime
  outputs:
    appointmentId: $steps.confirmAppointment.outputs.appointmentId
    dateTime: $steps.confirmAppointment.outputs.dateTime

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/cdk-global-schedule-service-appointment-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.