Skip to content
This repository was archived by the owner on Jan 12, 2021. It is now read-only.

Services

Johnathan Ludwig edited this page Jan 27, 2015 · 1 revision

This end point lists the services that identify which service a signature or custom signature was written for.

Actions

List

Example

api.services.list
> [
    {
              "id" => 5,
            "name" => "S3",
            "code" => "SSS",
      "created_at" => "2014-07-15T16:45:43.457Z",
      "updated_at" => "2014-07-15T16:45:43.457Z"
    }
  ]

Show

Show a specific service.

Parameters

Name Type Description
id integer Required. The ID of the service

Example

api.services.show(id: 5)
> {
            "id" => 5,
          "name" => "S3",
          "code" => "SSS",
    "created_at" => "2014-07-15T16:45:43.457Z",
    "updated_at" => "2014-07-15T16:45:43.457Z"
  }

Clone this wiki locally