Strivacity Notification Template API

The Notification Template API from Strivacity — 8 operation(s) for notification template.

Operations 8

PUT /admin/api/v1/admin/notificationPolicy/email/{id} Update an admin notification template (email) #
PUT /admin/api/v1/admin/notificationPolicy/sms/{id} Update an admin notification template (SMS) #
GET /admin/api/v1/admin/notificationPolicy/{type} List admin notification templates #
GET /admin/api/v1/admin/notificationPolicy/{type}/{id} Get an admin notification template #
PUT /admin/api/v1/notificationPolicies/{policyId}/email/{id} Update a notification template (email) #
PUT /admin/api/v1/notificationPolicies/{policyId}/sms/{id} Update a notification template (SMS) #
GET /admin/api/v1/notificationPolicies/{policyId}/{type} List notification templates #
GET /admin/api/v1/notificationPolicies/{policyId}/{type}/{id} Get a notification template #

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/strivacity-notification-template-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

strivacity-notification-template-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Strivacity Notification Template API
  version: v0.0.1
  description: 'Operations tagged Notification Template across 2 of this provider''s published API definitions: strivacity-admin-management-openapi-original.json, strivacity-admin-portal-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: https://{tenant}
  variables:
    tenant:
      default: example.strivacity.com
      description: Your Strivacity tenant
tags:
- name: Notification Template
paths:
  /admin/api/v1/admin/notificationPolicy/email/{id}:
    put:
      description: 'You can update an admin notification template for an email type and ID by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_admin_notification_policy |'
      operationId: updateAdminNotificationTemplateEmail
      parameters:
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationTemplateEmailUpdateRequest_NotificationTemplate'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationTemplateDTO_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_admin_notification_policy
      summary: Update an admin notification template (email)
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/admin/notificationPolicy/sms/{id}:
    put:
      description: 'You can update an admin notification template for an SMS type and ID by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_admin_notification_policy |'
      operationId: updateAdminNotificationTemplateSMS
      parameters:
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationTemplateSMSUpdateRequest_NotificationTemplate'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationTemplateDTO_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_admin_notification_policy
      summary: Update an admin notification template (SMS)
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/admin/notificationPolicy/{type}:
    get:
      description: 'You can list the existing admin notification templates by a notification type with this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_admin_notification_policy |'
      operationId: getAdminNotificationTemplateParameters
      parameters:
      - in: path
        name: type
        required: true
        schema:
          type: string
          enum:
          - sms
          - email
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotificationTemplateResponse_NotificationTemplateMetainfo'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
      security:
      - securityScheme:
        - read:config_admin_notification_policy
      summary: List admin notification templates
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/admin/notificationPolicy/{type}/{id}:
    get:
      description: 'You can get an admin notification template by a notification type and ID with this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_admin_notification_policy |'
      operationId: getAdminNotificationTemplate
      parameters:
      - in: path
        name: type
        required: true
        schema:
          type: string
          enum:
          - sms
          - email
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationTemplateDTO_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_admin_notification_policy
      summary: Get an admin notification template
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/notificationPolicies/{policyId}/email/{id}:
    put:
      description: 'You can update a notification template for an email type and ID by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_notification_policy |'
      operationId: updateNotificationTemplateEmail
      parameters:
      - in: path
        name: policyId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationTemplateEmailUpdateRequest_NotificationTemplate'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationTemplateEmailUpdateRequest_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_notification_policy
      summary: Update a notification template (email)
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/notificationPolicies/{policyId}/sms/{id}:
    put:
      description: 'You can update a notification template for an SMS type and ID by calling this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | write:config_notification_policy |'
      operationId: updateNotificationTemplateSMS
      parameters:
      - in: path
        name: policyId
        required: true
        schema:
          type: string
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/NotificationTemplateSMSUpdateRequest_NotificationTemplate'
        required: true
      responses:
        '200':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/NotificationTemplateSMSUpdateRequest_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - write:config_notification_policy
      summary: Update a notification template (SMS)
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/notificationPolicies/{policyId}/{type}:
    get:
      description: 'You can list the existing notification templates by a notification type with this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_notification_policy |'
      operationId: getNotificationTemplateParameters
      parameters:
      - in: path
        name: policyId
        required: true
        schema:
          type: string
      - in: path
        name: type
        required: true
        schema:
          type: string
          enum:
          - sms
          - email
      responses:
        '200':
          content:
            '*/*':
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/NotificationTemplateResponse_NotificationTemplateMetainfo'
          description: OK
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_notification_policy
      summary: List notification templates
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
  /admin/api/v1/notificationPolicies/{policyId}/{type}/{id}:
    get:
      description: 'You can get a notification template by a notification type and ID with this endpoint.


        | REQUIRED API PERMISSION |

        |:------------------------|

        | read:config_notification_policy |'
      operationId: getNotificationTemplate
      parameters:
      - in: path
        name: policyId
        required: true
        schema:
          type: string
      - in: path
        name: type
        required: true
        schema:
          type: string
          enum:
          - sms
          - email
      - in: path
        name: id
        required: true
        schema:
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
      responses:
        '200':
          content:
            '*/*':
              schema:
                oneOf:
                - $ref: '#/components/schemas/NotificationTemplateEmailUpdateRequest_NotificationTemplate'
                - $ref: '#/components/schemas/NotificationTemplateSMSUpdateRequest_NotificationTemplate'
          description: OK
        '400':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Bad Request
        '401':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Unauthorized
        '403':
          content:
            application/problem+json:
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Forbidden
        '404':
          content:
            '*/*':
              schema:
                $ref: '#/components/schemas/ProblemJson'
          description: Not Found
      security:
      - securityScheme:
        - read:config_notification_policy
      summary: Get a notification template
      tags:
      - Notification Template
    servers:
    - url: https://{tenant}
      variables:
        tenant:
          default: example.strivacity.com
          description: Your Strivacity tenant
components:
  schemas:
    ProblemJson:
      type: object
      properties:
        detail:
          type: string
        entityName:
          type: string
          description: The name of the entity within the error has occurred
        errorKey:
          type: string
          description: A unique identifier of the error
        fieldErrors:
          type: array
          description: Field constraint violation errors
          items:
            $ref: '#/components/schemas/FieldError'
        message:
          type: string
          description: A unique identifier in format of 'error.{errorKey}'
        params:
          type: array
          description: Further information related to the actual error
          items:
            type: object
            additionalProperties:
              type: object
        path:
          type: string
          description: Request URI
        status:
          type: integer
          description: Status code
          format: int32
        title:
          type: string
      description: Based on [RFC 7807](https://datatracker.ietf.org/doc/html/rfc7807)
    NotificationTemplateResponse_NotificationTemplateMetainfo:
      type: object
      properties:
        displayName:
          type: string
        enabled:
          type: boolean
        id:
          type: string
        modified:
          type: boolean
        optional:
          type: boolean
        placeholders:
          type: array
          items:
            $ref: '#/components/schemas/Placeholder_NotificationTemplateMetainfo'
      description: Represents a notification template
    FieldError:
      type: object
      properties:
        field:
          type: string
        message:
          type: string
        objectName:
          type: string
    Placeholder_NotificationTemplateMetainfo:
      type: object
      properties:
        placeholder:
          type: string
      description: Represents a placeholder
    NotificationTemplateDTO_NotificationTemplate:
      required:
      - id
      type: object
      properties:
        body:
          maxLength: 100000
          minLength: 1
          type: string
          description: HTML body of the template, if not specified it'll be reset to the default template
        enabled:
          type: boolean
          default: true
        id:
          maxLength: 255
          minLength: 0
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
        type:
          type: string
          enum:
          - sms
          - email
    NotificationTemplateSMSUpdateRequest_NotificationTemplate:
      required:
      - id
      type: object
      properties:
        body:
          maxLength: 100000
          minLength: 1
          type: string
          description: HTML body of the template, if not specified it'll be reset to the default template
        enabled:
          type: boolean
          default: true
        id:
          maxLength: 255
          minLength: 0
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
        type:
          type: string
          enum:
          - sms
          - email
    NotificationTemplateEmailUpdateRequest_NotificationTemplate:
      required:
      - id
      type: object
      properties:
        body:
          maxLength: 100000
          minLength: 1
          type: string
          description: HTML body of the template, if not specified it'll be reset to the default template
        enabled:
          type: boolean
          default: true
        id:
          maxLength: 255
          minLength: 0
          pattern: ^[a-zA-Z0-9-_]+$
          type: string
        plainTextBody:
          maxLength: 100000
          minLength: 1
          type: string
          description: Plain text body of the template, if not specified it'll be reset to the default template
        subject:
          maxLength: 255
          minLength: 1
          pattern: ^$|^[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°]([\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*° ]*[\p{L}\p{N}\-.:\/_(){}\[\]|&'"?!@+*°])?$
          type: string
          description: Subject text of the template, if not specified it'll be reset to the default template
        type:
          type: string
          enum:
          - sms
          - email
  securitySchemes:
    securityScheme:
      scheme: bearer
      type: http
x-refined-from:
- strivacity-admin-management-openapi-original.json
- strivacity-admin-portal-openapi-original.json
x-readme:
  explorer-enabled: true
  proxy-enabled: true