AMCS Group Job Materials API

The Job Materials API from AMCS Group — 1 operation(s) for job materials.

Operations 1

GET /integrator/jobMaterials/{id} Find with GUID #

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-job-materials-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-job-materials-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  description: '# Getting Started


    ## Document Purpose and Scope


    The Scale REST API endpoints are technically described in this document.'
  title: Scale REST Job Materials API
  version: '9.1'
servers:
- url: http://{env}-svc-core.amcsplatform.com/scale/api/
tags:
- name: Job Materials
paths:
  /integrator/jobMaterials/{id}:
    get:
      tags:
      - Job Materials
      summary: Find with GUID
      description: '| Property | Description |

        |-------------------------------------------------------|-----------------------------------------------------------------------------------|

        | JobGUID | The Job GUID. Filterable. |

        | LinkedMaterials[] | The linked materials for the job. |

        | LinkedMaterials[].MaterialGUID | The Material Guid |

        | LinkedMaterials[].Material | The Material Description. |

        | LinkedMaterials[].ShortCode | The Material ShortCode. |

        | LinkedMaterials[].AnalysisCode | The Material AnalysisCode. |

        | LinkedMaterials[].EWCCode | The Material EWCCode. |'
      operationId: JobMaterials_Get
      parameters:
      - name: id
        in: path
        required: true
        schema:
          type: string
          format: uuid
      - name: links
        in: query
        required: false
        schema:
          type: string
      - name: include
        in: query
        required: false
        schema:
          type: string
      - name: expand
        in: query
        required: false
        schema:
          type: string
      - name: udf
        in: query
        required: false
        schema:
          type: string
      responses:
        '200':
          description: OK
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ApiResourceResultEntity_ApiJobMaterialsResource'
components:
  schemas:
    ApiResourceStatus:
      type: object
      properties:
        id:
          format: int32
          type: integer
        isSuccess:
          type: boolean
    ApiResourceResultEntity_ApiJobMaterialsResource:
      type: object
      properties:
        resource:
          $ref: '#/components/schemas/ApiJobMaterialsResource'
        links:
          $ref: '#/components/schemas/ApiResourceResultEntityLinks'
        extra:
          $ref: '#/components/schemas/ApiResourceResultEntityExtra'
        errors:
          $ref: '#/components/schemas/ApiResourceErrors'
        status:
          $ref: '#/components/schemas/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
    ApiMaterialResource:
      type: object
      properties:
        MaterialGUID:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        Material:
          type: string
        ShortCode:
          type: string
        AnalysisCode:
          type: string
        EWCCode:
          type: string
    ApiResourceErrors:
      type: object
      properties:
        errors:
          type: string
    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
    ApiJobMaterialsResource:
      type: object
      properties:
        JobGUID:
          format: uuid
          type: string
          example: 00000000-0000-0000-0000-000000000000
        LinkedMaterials:
          type: array
          items:
            $ref: '#/components/schemas/ApiMaterialResource'