Atomicwork businessHourConfig API

The businessHourConfig API from Atomicwork — 2 operation(s) for businesshourconfig.

Operations 2

GET /api/v1/workspaces/{workspace_id}/business-hour-config Retrieve Business Hour Configurations #
GET /api/v1/workspaces/{workspace_id}/business-hour-config/{id} Retrieve Business Hour Configurations #

Work with this as data

Every API 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 apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • 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 API
curl "https://apis.io/api/v1/apis/atomicwork-businesshourconfig-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

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

Get an API key

Free tier, no email required.

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

OpenAPI Specification

atomicwork-businesshourconfig-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Atomicwork Public accessManagement Business Hour Config API
  version: 1.0.0
servers:
- url: https://{tenant}.atomicwork.com
  description: Your Atomicwork tenant
tags:
- name: businessHourConfig
paths:
  /api/v1/workspaces/{workspace_id}/business-hour-config:
    get:
      operationId: getapi-v-1-workspaces-workspace-id-business-hour-config
      summary: Retrieve Business Hour Configurations
      tags:
      - businessHourConfig
      parameters:
      - name: workspace_id
        in: path
        description: The workspace ID
        required: true
        schema:
          type: integer
          format: int64
      - name: search_key
        in: query
        description: ''
        required: false
        schema:
          type: string
      - name: page
        in: query
        description: ''
        required: true
        schema:
          type: integer
          default: 1
      - name: per_page
        in: query
        description: ''
        required: false
        schema:
          type: integer
          default: 25
      - name: type
        in: query
        description: Automation entity type (see allowed values in the enum schema).
        required: false
        schema:
          $ref: '#/components/schemas/ApiV1WorkspacesWorkspaceIdBusinessHourConfigGetParametersType'
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Business_Hour_Config_getapi_v1_workspaces__workspace_id__business_hour_config_Response_200'
  /api/v1/workspaces/{workspace_id}/business-hour-config/{id}:
    get:
      operationId: getapi-v-1-workspaces-workspace-id-business-hour-config-id
      summary: Retrieve Business Hour Configurations
      tags:
      - businessHourConfig
      parameters:
      - name: workspace_id
        in: path
        description: The workspace ID
        required: true
        schema:
          type: integer
          format: int64
      - name: id
        in: path
        description: The business hour configuration ID
        required: true
        schema:
          type: integer
          format: int64
      - name: X-Api-Key
        in: header
        required: true
        schema:
          type: string
      - name: X-Workspace-Id
        in: header
        required: false
        schema:
          type: string
      responses:
        '200':
          description: Successful response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Business_Hour_Config_getapi_v1_workspaces__workspace_id__business_hour_config__id_Response_200'
components:
  schemas:
    Business_Hour_Config_getapi_v1_workspaces__workspace_id__business_hour_config__id_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Business Hour Config_getapi_v1_workspaces__workspace_id__business_hour_config__id_Response_200
    Business_Hour_Config_getapi_v1_workspaces__workspace_id__business_hour_config_Response_200:
      type: object
      properties: {}
      description: Empty response body
      title: Business Hour Config_getapi_v1_workspaces__workspace_id__business_hour_config_Response_200
    ApiV1WorkspacesWorkspaceIdBusinessHourConfigGetParametersType:
      type: string
      enum:
      - DROPDOWN
      - LIST
      title: ApiV1WorkspacesWorkspaceIdBusinessHourConfigGetParametersType
  securitySchemes:
    ApiKeyAuth:
      type: apiKey
      in: header
      name: X-Api-Key