Get an Edge server claim.

Details

Get an Edge server claim.

Both account and server tokens may be used to run this endpoint.

Parameters

path

  • id (required): The ID of the ecosystem.
  • edgeId (required): The ID of the Edge server.

Responses

200

{
    "claimType": "CLAIM-TYPE",
    "ecosystemId": "ECOSYSTEM-ID",
    "edgeId": "EDGE-ID",
    "environmentId": "ENVIRONMENT-ID",
    "id": "ECOSYSTEM-ID;EDGE-ID;CLAIM-TYPE"
}

400

  • Ecosystem Invalid: The standard error structure defines this error as invalid parameters, with an invalid ID linked to the parameter that designates the ecosystem ID. In this context, it means that the ID given for an ecosystem was not valid.
  • No Query String Allowed: The standard error structure defines this error as invalid parameters, with additional parameters in the query string. In this context, it means that no query string is allowed at all when calling this endpoint.

404

  • Ecosystem Not Found: This error means that an ecosystem with the given ID was not found. This is distinct from an invalid ecosystem ID being specified; this means that the ecosystem ID once existed, but no longer does.
  • Edge ID Invalid: The standard error structure defines this error as invalid parameters, with an invalid ID. In this context, it means that the Edge ID given is not valid.
  • Edge ID Not Found: This error means that an Edge ID was not found. It may never have existed, or it might have once existed and been deleted.

Examples

HTTP

GET https://ioe.droplit.io/api/ecosystems/ECOSYSTEM-ID/claims/EDGE-ID HTTP/1.1
authorization: TOKEN

Droplit Console

droplit ecosystem get-claim ECOSYSTEM-ID EDGE-ID

Droplit SDK

droplit.ecosystem.getClaim("ECOSYSTEM-ID", "EDGE-ID");
Language
Authorization
Header
Click Try It! to start a request and see the response here!