Argo Workflows SyncService API

The SyncService API from Argo Workflows — 2 operation(s) for syncservice.

Operations 4

POST /api/v1/sync/{namespace} #
GET /api/v1/sync/{namespace}/{key} #
PUT /api/v1/sync/{namespace}/{key} #
DELETE /api/v1/sync/{namespace}/{key} #

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/argo-workflows-syncservice-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 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.

OpenAPI Specification

argo-workflows-syncservice-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: Argo Workflows is an open source container-native workflow engine for orchestrating parallel jobs on Kubernetes. For more information, please see https://argo-workflows.readthedocs.io/en/latest/
  title: Argo Workflows ArchivedWorkflowService Sync Service API
  version: 3.6.0
servers:
- url: http://localhost:2746
- url: https://localhost:2746
security:
- BearerToken: []
tags:
- name: SyncService
paths:
  /api/v1/sync/{namespace}:
    post:
      tags:
      - SyncService
      operationId: SyncService_CreateSyncLimit
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sync.SyncLimitResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/sync.CreateSyncLimitRequest'
        required: true
  /api/v1/sync/{namespace}/{key}:
    get:
      tags:
      - SyncService
      operationId: SyncService_GetSyncLimit
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      - name: type
        in: query
        schema:
          type: string
          enum:
          - CONFIGMAP
          - DATABASE
          default: CONFIGMAP
      - name: cmName
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sync.SyncLimitResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
    put:
      tags:
      - SyncService
      operationId: SyncService_UpdateSyncLimit
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sync.SyncLimitResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/sync.UpdateSyncLimitRequest'
        required: true
    delete:
      tags:
      - SyncService
      operationId: SyncService_DeleteSyncLimit
      parameters:
      - name: namespace
        in: path
        required: true
        schema:
          type: string
      - name: key
        in: path
        required: true
        schema:
          type: string
      - name: type
        in: query
        schema:
          type: string
          enum:
          - CONFIGMAP
          - DATABASE
          default: CONFIGMAP
      - name: cmName
        in: query
        schema:
          type: string
      responses:
        '200':
          description: A successful response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/sync.DeleteSyncLimitResponse'
        default:
          description: An unexpected error response.
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/grpc.gateway.runtime.Error'
      x-microcks-operation:
        delay: 0
        dispatcher: FALLBACK
components:
  schemas:
    sync.CreateSyncLimitRequest:
      type: object
      properties:
        cmName:
          type: string
        key:
          type: string
        limit:
          type: integer
        namespace:
          type: string
        type:
          $ref: '#/components/schemas/sync.SyncConfigType'
    grpc.gateway.runtime.Error:
      type: object
      properties:
        code:
          type: integer
        details:
          type: array
          items:
            $ref: '#/components/schemas/google.protobuf.Any'
        error:
          type: string
        message:
          type: string
    google.protobuf.Any:
      type: object
      properties:
        type_url:
          type: string
        value:
          type: string
          format: byte
    sync.DeleteSyncLimitResponse:
      type: object
    sync.SyncConfigType:
      type: string
      default: CONFIGMAP
      enum:
      - CONFIGMAP
      - DATABASE
    sync.SyncLimitResponse:
      type: object
      properties:
        cmName:
          type: string
        key:
          type: string
        limit:
          type: integer
        namespace:
          type: string
        type:
          $ref: '#/components/schemas/sync.SyncConfigType'
    sync.UpdateSyncLimitRequest:
      type: object
      properties:
        cmName:
          type: string
        key:
          type: string
        limit:
          type: integer
        namespace:
          type: string
        type:
          $ref: '#/components/schemas/sync.SyncConfigType'
  securitySchemes:
    BearerToken:
      type: apiKey
      in: header
      name: Authorization
      description: JWT Bearer token