Jebbit Integration Historic Backfills API

The Integration Historic Backfills API from Jebbit — 2 operation(s) for integration historic backfills.

Operations 4

GET /api/v1/integration_historic_backfills Index Integration Historic Backfills #
POST /api/v1/integration_historic_backfills integration_historic_backfills #
GET /api/v1/integration_historic_backfills/{backfill_id} Shows an Integration Historic Backfill #
PATCH /api/v1/integration_historic_backfills/{backfill_id} update integration historic backfill #

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/jebbit-integration-historic-backfills-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

jebbit-integration-historic-backfills-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Jebbit Integration Historic Backfills API
  description: '# Introduction

    Use our Jebbit API to automate tasks relating to your Jebbit Businesses, Campaigns, Product Feed, Launch Links, and Integrations.'
  version: v1
  x-logo:
    url: https://jebbit-public-api-docs.s3.amazonaws.com/images/logo.png
    backgroundColor: '#FFFFFF'
    altText: Jebbit
servers:
- url: https://api2.jebbit.com/
tags:
- name: Integration Historic Backfills
paths:
  /api/v1/integration_historic_backfills:
    get:
      summary: Index Integration Historic Backfills
      tags:
      - Integration Historic Backfills
      security:
      - JWT: []
      responses:
        '200':
          description: Successful
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    data:
                    - id: abc123
                      type: integration_historic_backfills
                      attributes:
                        endpoint: processing
                        integration_id: asdf1234
                    - id: def567
                      type: integration_historic_backfills
                      attributes:
                        status: received
                        integration_id: zmejas58
              schema:
                $ref: '#/components/schemas/integration_historic_backfills'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
        '403':
          description: forbidden
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 403
                      title: Forbidden
      operationId: getApiV1IntegrationHistoricBackfills
      x-operation-id-source: derived
    post:
      summary: integration_historic_backfills
      tags:
      - Integration Historic Backfills
      security:
      - JWT: []
      parameters: []
      responses:
        '201':
          description: Created
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    data:
                      id: abc123
                      type: integration_historic_backfills
                      attributes:
                        status: processing
              schema:
                $ref: '#/components/schemas/integration_historic_backfill'
        '400':
          description: bad request -- cannot request a backfill for an inactive integration
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
        '403':
          description: forbidden
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 403
                      title: Forbidden
        '422':
          description: bad request (no params given)
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    data:
                      id: abc123
                      type: integration_historic_backfills
                      attributes:
                        name: Jebbit
              schema:
                $ref: '#/components/schemas/integration_historic_backfill'
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              $ref: '#/components/schemas/integration_historic_backfill_request'
      operationId: postApiV1IntegrationHistoricBackfills
      x-operation-id-source: derived
  /api/v1/integration_historic_backfills/{backfill_id}:
    get:
      summary: Shows an Integration Historic Backfill
      tags:
      - Integration Historic Backfills
      security:
      - JWT: []
      parameters:
      - name: backfill_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: Successful
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    data:
                      id: abc123
                      type: integration_historic_backfills
                      attributes:
                        status: processing
              schema:
                $ref: '#/components/schemas/integration_historic_backfill'
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
        '403':
          description: forbidden
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 403
                      title: Forbidden
        '404':
          description: not found
      operationId: getApiV1IntegrationHistoricBackfillsByBackfillId
      x-operation-id-source: derived
    patch:
      summary: update integration historic backfill
      tags:
      - Integration Historic Backfills
      security:
      - JWT: []
      parameters:
      - name: backfill_id
        in: path
        required: true
        schema:
          type: string
      responses:
        '400':
          description: cannot restart in-progress (processing) job
        '401':
          description: Unauthorized
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 401
                      title: Unauthorized Request
        '403':
          description: forbidden
          content:
            application/vnd.api+json:
              examples:
                example_0:
                  value:
                    errors:
                    - status: 403
                      title: Forbidden
        '404':
          description: not found
      requestBody:
        content:
          application/vnd.api+json:
            schema:
              type: object
      operationId: patchApiV1IntegrationHistoricBackfillsByBackfillId
      x-operation-id-source: derived
components:
  schemas:
    integration_historic_backfill:
      type: object
      properties:
        data:
          type: object
          properties:
            id:
              type: string
            type:
              type: string
            attributes:
              type: object
              properties:
                status:
                  type: string
                created_at:
                  type: date
                updated_at:
                  type: date
                integration_id:
                  type: string
              required:
              - status
              - integration_id
          required:
          - type
    integration_historic_backfills:
      type: object
      properties:
        data:
          type: array
          items:
            type: integration_historic_backfill
    integration_historic_backfill_request:
      type: object
      properties:
        data:
          type: object
          properties:
            type:
              type: string
              default: integration_historic_backfills
            attributes:
              type: object
              properties:
                integration_id:
                  type: string
  securitySchemes:
    JWT:
      type: http
      scheme: bearer
      bearerFormat: JWT
      flows:
        authorizationCode:
          tokenUrl: https://auth.jebbit.com/oauth/token
          scopes:
            read: Grants read access
            write: Grants write access
            delete: Grants delete access