Enviance Activity API

The Activity API from Enviance — 2 operation(s) for activity.

Operations 4

POST /ver2/ActivityService.svc/activities Create Activity #
GET /ver2/ActivityService.svc/activities/{activityIdOrName} #
PUT /ver2/ActivityService.svc/activities/{activityIdOrName} #
DELETE /ver2/ActivityService.svc/activities/{activityIdOrName} #

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/enviance-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

enviance-activity-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  version: Platform.v2026.2.0.0.20260708
  title: Rest Activity API
  description: EMS Rest API
  contact:
    name: Cority
    email: support@cority.com
    url: https://cority.com
servers:
- url: https://api.enviance.com/
tags:
- name: Activity
paths:
  /ver2/ActivityService.svc/activities:
    post:
      tags:
      - Activity
      summary: Create Activity
      description: "Create an Activity\n\n\nenvianceSdk.activities.createActivity\n```\n[\n  {\n    \"name\": \"Activity Name\",\n    \"description\": \"Activity Description\",\n    \"templateIdOrName\": \"Template Name\",\n    \"fields\": [\n      {\n        \"name\": \"Aspect\",\n        \"values\": [\n          \"Air pollution control waste\"\n        ]\n      },\n      {\n        \"name\": \"Start Date\",\n        \"values\": [\n          \"2012-09-19T20:00:00\"\n        ]\n      },\n      {\n        \"name\": \"Type\",\n        \"values\": [\n          \"Spill\",\n          \"Near Miss\"\n        ]\n      }\n    ],\n    \"properties\": [\n      {\n        \"propertyIdOrName\": \"suv property name\"\n      },\n      {\n        \"propertyIdOrName\": \"avbp propertie name\",\n        \"valueHistory\": [\n          {\n            \"beginDate\": \"2012-01-19T20:00:00\",\n            \"endDate\": \"2012-02-19T20:00:00\",\n            \"value\": \"1\"\n          },\n          {\n            \"beginDate\": \"2012-02-19T20:00:00\",\n            \"endDate\": \"2012-03-19T20:00:00\",\n            \"value\": \"2\"\n          }\n        ]\n      }\n    ]\n  },\n  \"onsuccess\",\n  \"onerror\"\n]\n```\n\n"
      operationId: Enviance.RestServices.Ver2.MaterialActivity.Activities.Impl.ActivityService.CreateActivity
      parameters:
      - name: EnvApi-Systemid
        in: header
        description: Specify specific system to run instead of Home
        schema:
          type: string
      - name: EnvApi-Packageid
        in: header
        description: (optional) Clients application/package ID
        schema:
          type: string
      - name: EnvApi-Udf-DateTime-Iso-In-CustomFields
        in: header
        description: Udfs of DateTime should use Iso
        schema:
          type: string
          default: 'true'
      - name: EnvApi-Udf-DateTime-ReadInUserTz
        in: header
        description: (obsolete) Udfs of DateTime type whould be in ReadInUserTz
        schema:
          type: string
      - name: EnvApi-Udf-Value-Invariant
        in: header
        description: (optional) Udfs - Force Non-Localized (invariant) values
        schema:
          type: string
      - name: EnvApi-Localization-All
        in: header
        description: (optional) Extend objects with User-given Localizations
        schema:
          type: string
      - name: x-client-request-id
        in: header
        description: (optional) Client ID for double submit prevention
        schema:
          type: string
      responses:
        default:
          description: not available
          content:
            application/json:
              schema:
                type: string
                format: guid
            application/xml:
              schema:
                type: string
                format: guid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateActivity'
          application/xml:
            schema:
              $ref: '#/components/schemas/CreateActivity'
        required: true
  /ver2/ActivityService.svc/activities/{activityIdOrName}:
    get:
      tags:
      - Activity
      description: "\n\n\nenvianceSdk.activities.getActivity\n```\n[\n  \"Activity Name\",\n  \"onsuccess\",\n  \"onerror\"\n]\n```\n\n"
      operationId: Enviance.RestServices.Ver2.MaterialActivity.Activities.Impl.ActivityService.GetActivity
      parameters:
      - name: EnvApi-Systemid
        in: header
        description: Specify specific system to run instead of Home
        schema:
          type: string
      - name: EnvApi-Packageid
        in: header
        description: (optional) Clients application/package ID
        schema:
          type: string
      - name: EnvApi-Udf-DateTime-Iso-In-CustomFields
        in: header
        description: Udfs of DateTime should use Iso
        schema:
          type: string
          default: 'true'
      - name: EnvApi-Udf-DateTime-ReadInUserTz
        in: header
        description: (obsolete) Udfs of DateTime type whould be in ReadInUserTz
        schema:
          type: string
      - name: EnvApi-Udf-Value-Invariant
        in: header
        description: (optional) Udfs - Force Non-Localized (invariant) values
        schema:
          type: string
      - name: EnvApi-Localization-All
        in: header
        description: (optional) Extend objects with User-given Localizations
        schema:
          type: string
      - name: x-client-request-id
        in: header
        description: (optional) Client ID for double submit prevention
        schema:
          type: string
      - name: activityIdOrName
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: not available
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo'
            application/xml:
              schema:
                $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo'
    put:
      tags:
      - Activity
      description: "\n\n\nenvianceSdk.activities.updateActivity\n```\n[\n  \"Activity Name\",\n  {\n    \"name\": \"Activity Name\",\n    \"description\": \"Activity Description\",\n    \"templateIdOrName\": \"Template Name\",\n    \"fields\": [\n      {\n        \"name\": \"Aspect\",\n        \"values\": [\n          \"Air pollution control waste\"\n        ]\n      },\n      {\n        \"name\": \"Start Date\",\n        \"values\": [\n          \"2012-09-19T20:00:00\"\n        ]\n      },\n      {\n        \"name\": \"Type\",\n        \"values\": [\n          \"Spill\",\n          \"Near Miss\"\n        ]\n      }\n    ],\n    \"properties\": [\n      {\n        \"propertyIdOrName\": \"suv property name\"\n      },\n      {\n        \"propertyIdOrName\": \"avbp propertie name\",\n        \"valueHistory\": [\n          {\n            \"beginDate\": \"2012-01-19T20:00:00\",\n            \"endDate\": \"2012-02-19T20:00:00\",\n            \"value\": \"1\"\n          },\n          {\n            \"beginDate\": \"2012-02-19T20:00:00\",\n            \"endDate\": \"2012-03-19T20:00:00\",\n            \"value\": \"2\"\n          }\n        ]\n      }\n    ]\n  },\n  \"onsuccess\",\n  \"onerror\"\n]\n```\n\n"
      operationId: Enviance.RestServices.Ver2.MaterialActivity.Activities.Impl.ActivityService.UpdateActivity
      parameters:
      - name: EnvApi-Systemid
        in: header
        description: Specify specific system to run instead of Home
        schema:
          type: string
      - name: EnvApi-Packageid
        in: header
        description: (optional) Clients application/package ID
        schema:
          type: string
      - name: EnvApi-Udf-DateTime-Iso-In-CustomFields
        in: header
        description: Udfs of DateTime should use Iso
        schema:
          type: string
          default: 'true'
      - name: EnvApi-Udf-DateTime-ReadInUserTz
        in: header
        description: (obsolete) Udfs of DateTime type whould be in ReadInUserTz
        schema:
          type: string
      - name: EnvApi-Udf-Value-Invariant
        in: header
        description: (optional) Udfs - Force Non-Localized (invariant) values
        schema:
          type: string
      - name: EnvApi-Localization-All
        in: header
        description: (optional) Extend objects with User-given Localizations
        schema:
          type: string
      - name: x-client-request-id
        in: header
        description: (optional) Client ID for double submit prevention
        schema:
          type: string
      - name: activityIdOrName
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: not available
          content:
            application/json:
              schema:
                type: string
                format: guid
            application/xml:
              schema:
                type: string
                format: guid
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateActivity'
          application/xml:
            schema:
              $ref: '#/components/schemas/UpdateActivity'
        required: true
    delete:
      tags:
      - Activity
      description: "\n\n\nenvianceSdk.activities.deleteActivity\n```\n[\n  \"Activity Name\",\n  \"onsuccess\",\n  \"onerror\"\n]\n```\n\n"
      operationId: Enviance.RestServices.Ver2.MaterialActivity.Activities.Impl.ActivityService.DeleteActivity
      parameters:
      - name: EnvApi-Systemid
        in: header
        description: Specify specific system to run instead of Home
        schema:
          type: string
      - name: EnvApi-Packageid
        in: header
        description: (optional) Clients application/package ID
        schema:
          type: string
      - name: EnvApi-Udf-DateTime-Iso-In-CustomFields
        in: header
        description: Udfs of DateTime should use Iso
        schema:
          type: string
          default: 'true'
      - name: EnvApi-Udf-DateTime-ReadInUserTz
        in: header
        description: (obsolete) Udfs of DateTime type whould be in ReadInUserTz
        schema:
          type: string
      - name: EnvApi-Udf-Value-Invariant
        in: header
        description: (optional) Udfs - Force Non-Localized (invariant) values
        schema:
          type: string
      - name: EnvApi-Localization-All
        in: header
        description: (optional) Extend objects with User-given Localizations
        schema:
          type: string
      - name: x-client-request-id
        in: header
        description: (optional) Client ID for double submit prevention
        schema:
          type: string
      - name: activityIdOrName
        in: path
        required: true
        schema:
          type: string
      responses:
        default:
          description: not available
components:
  schemas:
    Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo:
      properties:
        id:
          type: string
          format: guid
          uniqueItems: false
        name:
          type: string
          uniqueItems: false
        description:
          type: string
          uniqueItems: false
        templateIdOrName:
          type: string
          uniqueItems: false
        fields:
          type: array
          items:
            $ref: '#/components/schemas/Enviance.RestServices.Udfs.Property'
          uniqueItems: false
        properties:
          type: array
          items:
            $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityPropertyMapInfo'
          uniqueItems: false
      type: object
      format: Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo
    UpdateActivity:
      properties:
        activityInfo:
          $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo'
      type: object
      format: UpdateActivity
    Enviance.RestServices.Ver2.MaterialActivity.Activities.MaterialValueHistoryInfo:
      properties:
        id:
          type: string
          format: guid
          uniqueItems: false
        beginDate:
          type: string
          format: date-time
          uniqueItems: false
        endDate:
          type: string
          format: date-time
          uniqueItems: false
        value:
          type: number
          format: double
          uniqueItems: false
      type: object
      format: Enviance.RestServices.Ver2.MaterialActivity.Activities.MaterialValueHistoryInfo
    Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityPropertyMapInfo:
      properties:
        propertyIdOrName:
          type: string
          uniqueItems: false
        valueHistory:
          type: array
          items:
            $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.MaterialValueHistoryInfo'
          uniqueItems: false
      type: object
      format: Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityPropertyMapInfo
    Enviance.Business.Udf.Rest.UrlItem:
      properties:
        label:
          type: string
          uniqueItems: false
        url:
          type: string
          uniqueItems: false
      type: object
      format: Enviance.Business.Udf.Rest.UrlItem
    CreateActivity:
      properties:
        activityInfo:
          $ref: '#/components/schemas/Enviance.RestServices.Ver2.MaterialActivity.Activities.ActivityInfo'
        copyFrom:
          type: string
          uniqueItems: false
      type: object
      format: CreateActivity
    Enviance.RestServices.Udfs.Property:
      properties:
        name:
          type: string
          uniqueItems: false
        urlItems:
          type: array
          items:
            $ref: '#/components/schemas/Enviance.Business.Udf.Rest.UrlItem'
          uniqueItems: false
        values:
          type: array
          items:
            type: string
          uniqueItems: false
        beginDate:
          type: string
          format: date-time
          uniqueItems: false
        endDate:
          type: string
          format: date-time
          uniqueItems: false
        caption:
          type: string
          uniqueItems: false
        captionLocalized:
          type: string
          uniqueItems: false
      type: object
      format: Enviance.RestServices.Udfs.Property
  securitySchemes:
    Basic:
      type: http
      scheme: basic
      description: Forces authentication with credentials via an api gateway
    EnvianceAuth:
      type: apiKey
      description: "**Enviance \\<SessionId\\>**. \n\t\t\t\t\t  Obtain SessionId by POST /ver2/AuthenticationService.svc/sessions first"
      name: Authorization
      in: header