Golioth Releases API

The Releases API from Golioth — 2 operation(s) for releases.

Operations 6

GET /v1/projects/{projectId}/releases #
POST /v1/projects/{projectId}/releases #
DELETE /v1/projects/{projectId}/releases/{releaseId} #
GET /v1/projects/{projectId}/releases/{releaseId} #
PATCH /v1/projects/{projectId}/releases/{releaseId} #
PUT /v1/projects/{projectId}/releases/{releaseId} #

Documentation

Specifications

Schemas & Data

Other Resources

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/golioth-releases-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

golioth-releases-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Golioth Management Access Releases API
  version: '1.0'
  description: 'Golioth IoT Device Management REST API. Authenticate with project-scoped API keys passed in the x-api-key header. Upstream OpenAPI: https://api.golioth.io/openapi.json'
servers:
- url: https://api.golioth.io
security:
- API Key: []
  Bearer: []
tags:
- name: Releases
paths:
  /v1/projects/{projectId}/releases:
    get:
      operationId: Releases_List
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: query
        name: page
        schema:
          format: int64
          type: integer
      - in: query
        name: perPage
        schema:
          format: int64
          type: integer
      - in: query
        name: releaseTags
        schema:
          items:
            type: string
          type: array
      - in: query
        name: deviceTags
        schema:
          items:
            type: string
          type: array
      - in: query
        name: ids
        schema:
          items:
            type: string
          type: array
      - in: query
        name: rollout
        schema:
          type: boolean
      - in: query
        name: blueprintId
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothListReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
    post:
      operationId: Releases_Create
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/goliothReleasesCreateBody'
        required: true
        x-originalParamName: body
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothCreateReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
  /v1/projects/{projectId}/releases/{releaseId}:
    delete:
      operationId: Releases_Delete
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: releaseId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothDeleteReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
    get:
      operationId: Releases_Get
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: releaseId
        required: true
        schema:
          type: string
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothGetReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
    patch:
      operationId: Releases_Update2
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: releaseId
        required: true
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/goliothReleaseUpdate'
        required: true
        x-originalParamName: update
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
    put:
      operationId: Releases_Update
      parameters:
      - in: path
        name: projectId
        required: true
        schema:
          type: string
      - in: path
        name: releaseId
        required: true
        schema:
          type: string
      - in: query
        name: updateMask
        schema:
          type: string
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/goliothReleaseUpdate'
        required: true
        x-originalParamName: update
      responses:
        '200':
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/goliothUpdateReleaseResponse'
          description: A successful response.
        default:
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/rpcStatus'
          description: An unexpected error response.
      tags:
      - Releases
components:
  schemas:
    rpcStatus:
      properties:
        code:
          format: int32
          type: integer
        details:
          items:
            $ref: '#/components/schemas/protobufAny'
          type: array
        message:
          type: string
      type: object
    goliothDeleteReleaseResponse:
      type: object
    goliothReleasesCreateBody:
      properties:
        artifactIds:
          items:
            type: string
          type: array
        deviceTagIds:
          items:
            type: string
          type: array
        releaseTags:
          items:
            type: string
          type: array
        rollout:
          type: boolean
      type: object
    goliothUpdateReleaseResponse:
      properties:
        data:
          $ref: '#/components/schemas/goliothRelease'
      type: object
    goliothGetReleaseResponse:
      properties:
        data:
          $ref: '#/components/schemas/goliothRelease'
      type: object
    goliothListReleaseResponse:
      properties:
        list:
          items:
            $ref: '#/components/schemas/goliothRelease'
          type: array
        page:
          format: int64
          type: integer
        perPage:
          format: int64
          type: integer
        total:
          format: int64
          type: integer
      type: object
    goliothCreateReleaseResponse:
      properties:
        data:
          $ref: '#/components/schemas/goliothRelease'
      type: object
    protobufAny:
      additionalProperties: {}
      properties:
        '@type':
          type: string
      type: object
    goliothReleaseUpdate:
      properties:
        addDeviceTagId:
          items:
            type: string
          type: array
        addReleaseTag:
          items:
            type: string
          type: array
        deviceTagIds:
          items:
            type: string
          type: array
        releaseTags:
          items:
            type: string
          type: array
        removeDeviceTagId:
          items:
            type: string
          type: array
        removeReleaseTag:
          items:
            type: string
          type: array
        rollout:
          type: boolean
      type: object
    goliothRelease:
      properties:
        artifactIds:
          items:
            type: string
          type: array
        blueprintId:
          type: string
        cohortId:
          type: string
        createdAt:
          format: date-time
          type: string
        deviceTagIds:
          items:
            type: string
          type: array
        id:
          type: string
        releaseTags:
          items:
            type: string
          type: array
        rollout:
          type: boolean
        sequenceNumber:
          format: int64
          type: string
        suitManifest:
          type: object
        updatedAt:
          format: date-time
          type: string
      type: object
  securitySchemes:
    API_Key:
      in: header
      name: x-api-key
      type: apiKey
    Bearer:
      in: header
      name: Authorization
      type: apiKey
externalDocs:
  description: golioth API
  url: https://docs.golioth.io