AMCS Group Subscriber API

The Subscriber API from AMCS Group — 2 operation(s) for subscriber.

Operations 4

GET /integrator/subscribers/{id} Find with GUID #
PUT /integrator/subscribers/{id} Partial update #
GET /integrator/subscribers Find with Filters #
POST /integrator/subscribers Create or update #

Specifications

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/amcs-group-subscriber-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

amcs-group-subscriber-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Core AccessGroup Subscriber API
  version: core
servers:
- url: https://rstapi-sbx-svc-core.amcsplatform.com/erp/api/integrator/erp
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Subscriber
paths:
  /integrator/subscribers/{id}:
    get:
      tags:
      - Subscriber
      summary: Find with GUID
      description: "| Property                                              | Description                                                    |\n| ----------------------------------------------------- | -------------------------------------------------------------- |\n| Name                                                  | The name of the Subscriber                                     |\n| CompanyOutlets[]                                      | The company outlets associated with the subscriber             |\n| CompanyOutlets[].SubscriberOutletListItem             | The SubscriberOutletListItem of the outlets for the subscriber |\n| CompanyOutlets[].SubscriberOutletListItem.Description | The company outlet description                                 |\n| CompanyOutlets[].SubscriberOutletListItem.AbbreviatedDescription | The company outlet abbreviated description                                 |\n| CompanyOutlets[].SubscriberOutletListItem.Guid        | The company Outlet Guid                                        |\n| RelatedSubscriberOutletGuid\t\t\t\t\t\t\t| The Related Subscriber Outlet Guid\t\t\t\t\t\t\t |\n| GUID                                                  | The Subscriber Guid                                            |"
      operationId: Subscriber_Get
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - name: id
        in: path
        required: true
        type: string
        format: uuid
      - name: links
        in: query
        required: false
        type: string
      - name: include
        in: query
        required: false
        type: string
      - name: expand
        in: query
        required: false
        type: string
      - name: udf
        in: query
        required: false
        type: string
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/ApiResourceResultEntity[ApiSubscriberResource]'
    put:
      tags:
      - Subscriber
      summary: Partial update
      description: "| Property                                              | Description                                                            | Required |\n|-------------------------------------------------------|------------------------------------------------------------------------|----------|\n| Name                                                  | The name of the Subscriber                                             | No       |\n| CompanyOutlets[]                                      | The company outlets associated with the subscriber                     | Yes      |\n| CompanyOutlets[].SubscriberOutletListItem             | The SubscriberOutletListItem of the outlets for the subscriber         | Yes      |\n| CompanyOutlets[].SubscriberOutletListItem.Description | The company outlet description                                         | No       |\n| CompanyOutlets[].SubscriberOutletListItem.Guid        | The company Outlet Guid                                                | Yes      |\n| RelatedSubscriberOutletGuid\t\t\t\t\t\t\t| The Related Subscriber Outlet Guid, required if it needs to be updated | No       |\n| GUID                                                  | The Subscriber Guid                                                    | No       |"
      operationId: Subscriber_Update
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - name: id
        in: path
        required: true
        type: string
        format: uuid
      - in: body
        required: true
        schema:
          $ref: '#/definitions/ApiResourceId'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/ApiResourceId'
  /integrator/subscribers:
    get:
      tags:
      - Subscriber
      summary: Find with Filters
      description: "| Property                                              | Description                                                    |\n| ----------------------------------------------------- | -------------------------------------------------------------- |\n| Name                                                  | The name of the Subscriber                                     |\n| CompanyOutlets[]                                      | The company outlets associated with the subscriber             |\n| CompanyOutlets[].SubscriberOutletListItem             | The SubscriberOutletListItem of the outlets for the subscriber |\n| CompanyOutlets[].SubscriberOutletListItem.Description | The company outlet description                                 |\n| CompanyOutlets[].SubscriberOutletListItem.AbbreviatedDescription | The company outlet abbreviated description                                 |\n| CompanyOutlets[].SubscriberOutletListItem.Guid        | The company Outlet Guid                                        |\n| RelatedSubscriberOutletGuid\t\t\t\t\t\t\t| The Related Subscriber Outlet Guid\t\t\t\t\t\t\t |\n| GUID                                                  | The Subscriber Guid                                            |"
      operationId: Subscriber_GetCollection
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - name: filter
        in: query
        required: false
        type: string
      - name: search
        in: query
        required: false
        type: string
      - name: order
        in: query
        required: false
        type: string
      - name: max
        in: query
        required: false
        type: integer
        format: int32
      - name: page
        in: query
        required: false
        type: integer
        format: int32
      - name: includeCount
        in: query
        required: false
        type: boolean
      - name: includeDeleted
        in: query
        required: false
        type: boolean
      - name: links
        in: query
        required: false
        type: string
      - name: udf
        in: query
        required: false
        type: string
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/ApiResourceResultCollection[ApiSubscriberResource]'
    post:
      tags:
      - Subscriber
      summary: Create or update
      description: "\n\n# Subscribers\n\n| Property                                              | Description                                                    | Required |\n|-------------------------------------------------------|----------------------------------------------------------------|----------|\n| Name                                                  | The name of the Subscriber                                     | Yes      |\n| CompanyOutlets[]                                      | The company outlets associated with the subscriber             | Yes      |\n| CompanyOutlets[].SubscriberOutletListItem             | The SubscriberOutletListItem of the outlets for the subscriber | Yes      |\n| CompanyOutlets[].SubscriberOutletListItem.Description | The company outlet description                                 | No       |\n| CompanyOutlets[].SubscriberOutletListItem.Guid        | The company Outlet Guid                                        | Yes      |\n| RelatedSubscriberOutletGuid\t\t\t\t\t\t\t| The Related Subscriber Outlet Guid\t\t\t\t\t\t\t | No       |\n| GUID                                                  | The Subscriber Guid                                            | No       |"
      operationId: Subscriber_Create
      consumes:
      - application/json
      produces:
      - application/json
      parameters:
      - in: body
        required: true
        schema:
          $ref: '#/definitions/ApiResourceId'
      responses:
        '200':
          description: OK
          schema:
            $ref: '#/definitions/ApiResourceId'
definitions:
  ApiResourceResultEntity[ApiSubscriberResource]:
    type: object
    properties:
      resource:
        $ref: '#/definitions/ApiSubscriberResource'
      links:
        $ref: '#/definitions/ApiResourceResultEntityLinks'
      extra:
        $ref: '#/definitions/ApiResourceResultEntityExtra'
      errors:
        $ref: '#/definitions/ApiResourceErrors'
      status:
        $ref: '#/definitions/ApiResourceStatus'
  ApiSubscriberResource:
    type: object
    properties:
      Name:
        type: string
      CompanyOutlets:
        type: array
        items:
          $ref: '#/definitions/ApiSubscriberCompanyOutletResource'
      GUID:
        format: uuid
        type: string
        example: 00000000-0000-0000-0000-000000000000
  ApiIntegratorListItemResource:
    type: object
    properties:
      Description:
        type: string
      AbbreviatedDescription:
        type: string
      Guid:
        format: uuid
        type: string
        example: 00000000-0000-0000-0000-000000000000
  ApiResourceStatus:
    type: object
    properties:
      id:
        format: int32
        type: integer
      isSuccess:
        type: boolean
  ApiResourceResultEntityLinks:
    type: object
    properties:
      self:
        type: string
      associations:
        type: array
        items:
          type: string
      expand:
        type: array
        items:
          type: string
      operations:
        type: array
        items:
          type: string
  ApiSubscriberCompanyOutletResource:
    type: object
    properties:
      SubscriberOutletListItem:
        $ref: '#/definitions/ApiIntegratorListItemResource'
      RelatedSubscriberOutletGuid:
        format: uuid
        type: string
        example: 00000000-0000-0000-0000-000000000000
  ApiResourceResultCollection[ApiSubscriberResource]:
    type: object
    properties:
      resource:
        type: array
        items:
          $ref: '#/definitions/ApiSubscriberResource'
      extra:
        $ref: '#/definitions/ApiResourceResultCollectionExtra'
      errors:
        $ref: '#/definitions/ApiResourceErrors'
      status:
        $ref: '#/definitions/ApiResourceStatus'
  ApiResourceResultCollectionExtra:
    type: object
    properties:
      count:
        format: int32
        type: integer
  ApiResourceId:
    type: object
    properties:
      resource:
        format: int32
        type: integer
      errors:
        $ref: '#/definitions/ApiResourceErrors'
      status:
        $ref: '#/definitions/ApiResourceStatus'
  ApiResourceResultEntityExtra:
    type: object
    properties:
      expand:
        type: object
        additionalProperties:
          type: object
          additionalProperties:
            type: object
      include:
        type: object
        additionalProperties:
          type: array
          items:
            type: object
            additionalProperties:
              type: object
  ApiResourceErrors:
    type: object
    properties:
      errors:
        type: string