Enviance Tag API
The Tag API from Enviance — 2 operation(s) for tag.
The Tag API from Enviance — 2 operation(s) for tag.
Every API here is available over the APIs.io API and to AI agents over MCP.
One button, every client — Claude, Cursor, VS Code and the rest.
https://apis.io/mcp
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.curl "https://apis.io/api/v1/apis/enviance-tag-api"
curl "https://apis.io/api/v1/apis?limit=25"
Discovery needs no key. Ratings and market analysis are Pro.
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: 3.2.0
info:
version: Platform.v2026.2.0.0.20260708
title: Rest Activity Tag API
description: EMS Rest API
contact:
name: Cority
email: support@cority.com
url: https://cority.com
servers:
- url: https://api.enviance.com/
tags:
- name: Tag
paths:
/ver2/TagService.svc/tags:
post:
tags:
- Tag
description: "\n\nCreates a new Tag.\n\n**Security:** Requires Manage Tag Schemes system right.\n\n**SDK API:** `envianceSdk.tags.createTag (tagInfo, onsuccess, onerror)`\n\n```\nPOST/TagService.svc/tags HTTP/1.1\nContent-Type: application/json; charset=UTF-8\n\n{\n \"tagInfo\": {\n \"name\": \"Tag Name\",\n \"tagSchemeIdOrName\": \"Tag Scheme 1\",\n \"description\": \"Tag Description\"\n }\n}\n\n```\n\n\n\nenvianceSdk.tags.createTag\n```\n[\n {\n \"name\": \"Tag Name\",\n \"description\": \"Tag 1 description\",\n \"tagSchemeIdOrName\": \"Tag 1 scheme\"\n },\n \"onsuccess\",\n \"onerror\"\n]\n```\nenvianceSdk.tagSchemes.createTagScheme\n```\n[\n {\n \"name\": \"Tag Scheme Name\",\n \"description\": \"Tag Scheme 1 description\",\n \"enforceUniqueness\": \"1\"\n },\n \"onsuccess\",\n \"onerror\"\n]\n```\n\n"
operationId: Enviance.RestServices.Ver2.TaggingObjects.Tag.Impl.TagService.CreateTag
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/CreateTag'
application/xml:
schema:
$ref: '#/components/schemas/CreateTag'
required: true
/ver2/TagService.svc/tags/{tagIdOrSchemeIdAndTagName}:
get:
tags:
- Tag
description: "\n\n\nenvianceSdk.tags.getTag\n```\n[\n \"Tag Name\",\n \"onsuccess\",\n \"onerror\"\n]\n```\nenvianceSdk.tagSchemes.getTagScheme\n```\n[\n \"Tag Scheme Name\",\n \"onsuccess\",\n \"onerror\"\n]\n```\n\n"
operationId: Enviance.RestServices.Ver2.TaggingObjects.Tag.Impl.TagService.GetTag
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: tagIdOrSchemeIdAndTagName
in: path
required: true
schema:
type: string
responses:
default:
description: not available
content:
application/json:
schema:
$ref: '#/components/schemas/Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo'
application/xml:
schema:
$ref: '#/components/schemas/Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo'
patch:
tags:
- Tag
description: "\n\nUpdates an existing Tag.\n\n**Security:** Requires Manage Tag Schemes system right.\n\n**SDK API:** `envianceSdk.tags.updateTag (tagIdOrSchemeIdAndTagName, tagInfo, onsuccess, onerror)`\n\n```\nGET /TagService.svc/tags/9ca22677-2670-41a9-bafd-3b2825592863 HTTP/1.1\n\n//RESPONSE\n{\n \"id\": \"9ca22677-2670-41a9-bafd-3b2825592863\",\n \"name\": \"Tag Name\",\n \"tagSchemeIdOrName\": \"Tag Scheme 1\",\n \"description\": \"Tag Description\"\n}\n\n```\n\n\n\nenvianceSdk.tags.updateTag\n```\n[\n \"Tag Name\",\n {\n \"name\": \"Tag Name\",\n \"description\": \"Tag 1 description\",\n \"tagSchemeIdOrName\": \"Tag 1 scheme\"\n },\n \"onsuccess\",\n \"onerror\"\n]\n```\nenvianceSdk.tagSchemes.updateTagScheme\n```\n[\n \"Tag Scheme Name\",\n {\n \"name\": \"Tag Scheme Name\",\n \"description\": \"Tag Scheme 1 description\",\n \"enforceUniqueness\": \"1\"\n },\n \"onsuccess\",\n \"onerror\"\n]\n```\n\n"
operationId: Enviance.RestServices.Ver2.TaggingObjects.Tag.Impl.TagService.UpdateTag
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: tagIdOrSchemeIdAndTagName
in: path
required: true
schema:
type: string
responses:
default:
description: not available
requestBody:
content:
application/json:
schema:
$ref: '#/components/schemas/UpdateTag'
application/xml:
schema:
$ref: '#/components/schemas/UpdateTag'
required: true
delete:
tags:
- Tag
description: "\n\n\nenvianceSdk.tags.deleteTag\n```\n[\n \"Tag Name\",\n \"onsuccess\",\n \"onerror\"\n]\n```\nenvianceSdk.tagSchemes.deleteTagScheme\n```\n[\n \"Tag Scheme Name\",\n \"onsuccess\",\n \"onerror\"\n]\n```\n\n"
operationId: Enviance.RestServices.Ver2.TaggingObjects.Tag.Impl.TagService.DeleteTag
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: tagIdOrSchemeIdAndTagName
in: path
required: true
schema:
type: string
responses:
default:
description: not available
components:
schemas:
CreateTag:
properties:
tagInfo:
$ref: '#/components/schemas/Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo'
type: object
format: CreateTag
Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo:
properties:
id:
type: string
format: guid
uniqueItems: false
tagSchemeIdOrName:
type: string
uniqueItems: false
name:
type: string
uniqueItems: false
description:
type: string
uniqueItems: false
type: object
format: Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo
UpdateTag:
properties:
tagInfo:
$ref: '#/components/schemas/Enviance.RestServices.Ver2.TaggingObjects.Tag.TagInfo'
type: object
format: UpdateTag
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