Graphiant Activity API

The Activity API from Graphiant — 1 operation(s) for activity.

Operations 1

POST /v1/activity/logs

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/graphiant-activity-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

graphiant-activity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Graphiant Activity API
  version: 1.0.0
  description: Graphiant API documentation.
servers:
- url: https://api.graphiant.com
security:
- jwtAuth: []
tags:
- name: Activity
paths:
  /v1/activity/logs:
    post:
      security:
      - jwtAuth: []
      parameters:
      - in: header
        name: Authorization
        required: true
        schema:
          type: string
        description: 'Bearer token. Format: Bearer <your_token_here>'
      requestBody:
        required: true
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/v1ActivityLogsPostRequest'
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/v1ActivityLogsPostResponse'
      tags:
      - Activity
components:
  schemas:
    v1ActivityLogsPostResponse:
      type: object
      properties:
        cursorRef:
          type: string
          example: example string
        details:
          type: array
          items:
            $ref: '#/components/schemas/auditmonActivityDetails'
        filterEntities:
          type: object
          additionalProperties:
            $ref: '#/components/schemas/v1ActivityLogsPostResponseActivityItems'
        filterJobTypes:
          type: array
          items:
            type: string
            example: ENUM_VALUE
        totalLogs:
          type: integer
          format: int64
          example: 12345678910
          minimum: 0
      additionalProperties: false
    v1ActivityLogsPostResponseActivityItems:
      type: object
      properties:
        items:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
      additionalProperties: false
    auditActivityItem:
      type: object
      properties:
        id:
          type: integer
          format: int64
          example: 1234567891011
        name:
          type: string
          example: example string
        type:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    auditmonActivityDetailsTargetEvent:
      type: object
      properties:
        state:
          type: string
          example: example string
        stateId:
          type: integer
          format: int32
          example: 123
        traceSessionId:
          type: string
          example: example string
        ts:
          $ref: '#/components/schemas/googleProtobufTimestamp'
      additionalProperties: false
    googleProtobufTimestamp:
      type: object
      properties:
        nanos:
          type: integer
          format: int32
          example: 123
        seconds:
          type: integer
          format: int64
          example: 1234567891011
      additionalProperties: false
    v1ActivityLogsPostRequest:
      type: object
      properties:
        cursorRef:
          type: string
          example: example string
        numLogs:
          type: integer
          format: int32
          example: 123
          minimum: 0
        oldTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        recentTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        selector:
          $ref: '#/components/schemas/auditmonActivityLogsSelector'
        selectorV2:
          $ref: '#/components/schemas/auditmonActivityLogsSelectorV2'
      additionalProperties: false
    auditmonActivityDetailsTarget:
      type: object
      properties:
        detailedFailureReason:
          type: string
          example: example string
        endTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        events:
          type: array
          items:
            $ref: '#/components/schemas/auditmonActivityDetailsTargetEvent'
        failureReason:
          type: string
          example: example string
        ids:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
        startTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        status:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    auditmonActivityLogsSelector:
      type: object
      properties:
        deviceIds:
          type: array
          items:
            type: integer
            format: int64
            example: 1234567891011
        id:
          type: string
          example: example string
        inProgress:
          type: boolean
          example: true
        jobEntity:
          $ref: '#/components/schemas/auditActivityItem'
        targetIds:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
        type:
          type: string
          example: ENUM_VALUE
      additionalProperties: false
    auditmonActivityLogsSelectorV2:
      type: object
      properties:
        deviceIds:
          type: array
          items:
            type: integer
            format: int64
            example: 1234567891011
        entities:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
        siteIds:
          type: array
          items:
            type: integer
            format: int64
            example: 1234567891011
        statuses:
          type: array
          items:
            type: string
            example: ENUM_VALUE
        types:
          type: array
          items:
            type: string
            example: ENUM_VALUE
        userIds:
          type: array
          items:
            type: string
            example: example string
      additionalProperties: false
    auditmonActivityDetails:
      type: object
      properties:
        action:
          type: string
          example: example string
        attributes:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
        category:
          type: string
          example: ENUM_VALUE
        disableAutoTimeout:
          type: boolean
          example: true
        endTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        enterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        id:
          type: string
          example: example string
        initiatorType:
          type: string
          example: ENUM_VALUE
        jobEntities:
          type: array
          items:
            $ref: '#/components/schemas/auditActivityItem'
        jobType:
          type: string
          example: ENUM_VALUE
        originalEnterpriseId:
          type: integer
          format: int64
          example: 1234567891011
        startTs:
          $ref: '#/components/schemas/googleProtobufTimestamp'
        status:
          type: string
          example: ENUM_VALUE
        targets:
          type: array
          items:
            $ref: '#/components/schemas/auditmonActivityDetailsTarget'
        traceSessionId:
          type: string
          example: example string
        usage:
          type: string
          example: ENUM_VALUE
        user:
          type: string
          example: example string
        userId:
          type: string
          example: example string
      additionalProperties: false
  securitySchemes:
    jwtAuth:
      type: apiKey
      in: header
      name: authorization
      description: Use `Bearer <token>`