Service types

List the service types available through Infiny.

Request

Endpoint: /api/services/types
Method: GET
Headers: Accept: application/vnd.cloudlx.v1+json
Authorization: Bearer <access_token>

Response

Example:

                                
    [
        {
            "id": 1,
            "name": "Amazon Web Services",
            "code": "AWS",
            "title": "Cloud Computing with Amazon Web Services (AWS)",
            "categories" : [
                {
                    "name" : "Cloud Connect",
                    "code" : "CSP"
                }
            ]
        },
        {
            "id": 2,
            "name": "Google Cloud Platform",
            "code": "GCP",
            "title": "Build at the speed of Google",
            "categories" : [
                {
                    "name" : "Cloud Connect",
                    "code" : "CSP"
                }
            ]
        },
        {
            "id": 25,
            "name": "Microsoft Azure",
            "code": "MSA",
            "title": "Your app. Your framework. Your platform. All are welcome.",
            "categories" : [
                {
                    "name" : "Cloud Connect",
                    "code" : "CSP"
                }
            ]
        }
    ]
                                
                            
id Description The Infiny ID for service type
Type Integer
Example 10
name Description The friendly name for the service type
Type Text
Example Amazon Web Services
code Description The short code for the service type
Type Text
Example AWS
title Description A short description of the service type
Type Text
Example Cloud Computing with Amazon Web Services (AWS)

Back to top