AMCS Group CustomerSite API

The CustomerSite API from AMCS Group — 1 operation(s) for customersite.

Operations 1

POST /visionai/api/integrator/customerSites Create or Update a Customer Site

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-customersite-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-customersite-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Core AccessGroup Customer Site 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: CustomerSite
paths:
  /visionai/api/integrator/customerSites:
    post:
      tags:
      - CustomerSite
      summary: Create or Update a Customer Site
      description: "# Create or Update a Customer Site\n\n| Parameter          | Type     | Description                                                               |\n| -------------------| -------- | ------------------------------------------------------------------------- |\n| CustomerSiteId     | GUID     | ID of the Customer Site                                                   |\n| Name               | string   | Display name of the Customer Site (Customer Name)                         |\n| Country            | string   | Address part                                                              |\n| City               | string   | Address part                                                              |\n| Street             | string   | Address part                                                              |\n| Address1           | string   | Address part                                                              |\n| Address2           | string   | Address part                                                              |\n| Address3           | string   | Address part                                                              |\n| Address4           | string   | Additional address part                                                   |\n| Address5           | string   | Additional address part                                                   |\n| PostalCode         | string   | Address part                                                              |\n| HouseNumber        | string   | Address part                                                              |\n| Latitude           | double   | Geographic coordinate                                                     |\n| Longitude          | double   | Geographic coordinate                                                     |\n| OutletId           | GUID     | ID of the Company Outlet associated with the Customer Site                |\n| IsDeleted          | bool     | Indicates if the Customer Site is no longer in use                        |\n| SiteType           | string   | Type of the site                                                          |\n| CustomerType       | string   | Type of the customer                                                      |\n\n## Sample API Requests\n\n```\n{\n  \"CustomerSiteId\": \"B3E43C4D-BC76-4E59-9E2E-25BC33EA2EC4\",\n  \"Name\": \"Alterwerth Group\",\n  \"Country\": \"United States\",\n  \"City\": \"Upper Marlboro\",\n  \"Street\": \"Trent Oval\",\n  \"PostalCode\": \"MD 20792\",\n  \"HouseNumber\": \"1762\",\n  \"Address1\": \"Building A\",\n  \"Address2\": \"Suite 5\",\n  \"Address3\": \"Near Landmark Mall\",\n  \"Address4\": \"PO Box 123\",\n  \"Address5\": \"Additional Info\",\n  \"Latitude\": 38.82000560748161,\n  \"Longitude\": -76.75000011205616,\n  \"OutletId\": \"2FAD788D-A748-4520-9120-923DA1E42942\",\n  \"IsDeleted\": false,\n  \"SiteType\": \"\",\n  \"CustomerType\": \"\"\n}\n```\n"
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AMCS.IoT.Contamination.Api.Integrator.CustomerSite.ApiCustomerAddress'
      responses:
        '200':
          description: Success
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResourceId'
        '400':
          $ref: '#/components/responses/BadRequest'
        '401':
          description: Unauthorized
        '403':
          $ref: '#/components/responses/Forbidden'
        '404':
          $ref: '#/components/responses/NotFound'
        '500':
          $ref: '#/components/responses/InternalServerError'
        '501':
          $ref: '#/components/responses/NotImplemented'
        '502':
          $ref: '#/components/responses/BadGateway'
        '503':
          $ref: '#/components/responses/ServiceUnavailable'
        '504':
          $ref: '#/components/responses/GatewayTimeout'
components:
  schemas:
    ApiResourceId:
      type: object
      properties:
        errors:
          $ref: '#/components/schemas/ApiResourceErrors'
        status:
          $ref: '#/components/schemas/ApiResourceStatus'
        resource:
          type: guid
      additionalProperties: false
    ApiResourceStatus:
      type: object
      properties:
        id:
          type:
          - integer
          - 'null'
          format: int32
        isSuccess:
          type: boolean
      additionalProperties: false
    ApiResourceErrors:
      type: object
      properties:
        errors:
          type:
          - string
          - 'null'
      additionalProperties: false
    AMCS.IoT.Contamination.Api.Integrator.CustomerSite.ApiCustomerAddress:
      type: object
      properties:
        customerSiteId:
          type: string
          format: uuid
        name:
          type:
          - string
          - 'null'
        postalCode:
          type:
          - string
          - 'null'
        houseNumber:
          type:
          - string
          - 'null'
        address1:
          type:
          - string
          - 'null'
        address2:
          type:
          - string
          - 'null'
        address3:
          type:
          - string
          - 'null'
        address4:
          type:
          - string
          - 'null'
        address5:
          type:
          - string
          - 'null'
        latitude:
          type:
          - number
          - 'null'
          format: double
        longitude:
          type:
          - number
          - 'null'
          format: double
        outletId:
          type: string
          format: uuid
        isDeleted:
          type: boolean
        siteType:
          type:
          - string
          - 'null'
        customerType:
          type:
          - string
          - 'null'
      additionalProperties: false
  responses:
    ServiceUnavailable:
      description: Service Unavailable - The server is currently unavailable.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Service is currently unavailable. Please try again later.
            additionalProperties: false
    Forbidden:
      description: Forbidden - Access denied.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: You do not have permission to access this resource.
            additionalProperties: false
    NotFound:
      description: Not Found - The requested resource was not found.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: The requested resource was not found.
            additionalProperties: false
    BadRequest:
      description: Bad Request - Invalid input parameters.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Invalid request. Please check your input parameters.
            additionalProperties: false
    BadGateway:
      description: Bad Gateway - The upstream server returned an invalid response.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Temporary issue with the server. Please try again later.
            additionalProperties: false
    InternalServerError:
      description: Supplied properties are not valid, please try again with proper request.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: Supplied properties are not valid, please try again with proper request.
            additionalProperties: false
    NotImplemented:
      description: This feature is not implemented.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: This feature is not implemented.
            additionalProperties: false
    GatewayTimeout:
      description: Gateway Timeout - The server took too long to respond.
      content:
        application/json:
          schema:
            type: object
            properties:
              error:
                type: string
                example: The request timed out. Please try again later.
            additionalProperties: false