FIC Service

This page describes operations you can perform on fic_services. List, and get details for.

List Fic Service

List all visible fic_services.

Synchronous / Asynchronous

  • Synchronous

Request

HTTP Request Method

  • GET

HTTP Request Path

{endpoint}/v2.0/fic_services

HTTP Request Parameters

Parameter

Style

Type

Format

Enumeration

Description

Required

description

query

string

-

-

Description of the FIC Service resource

no

id

query

string

hyph-uuid

-

Unique ID of the FIC Service resource

no

name

query

string

-

-

Name of the FIC Service resource

no

zone

query

string

-

-

Name of zone

no

Response

HTTP Response Code List

Response Code

Description

200

OK

400

Bad Request

401

UnAuthorized

404

Not Found

500

Internal Server Error

HTTP Response Parameters

Parameter

Type

Format

Description

fic_services

array<object>

datatype_fic_service

-

description

string

-

Description of the FIC Service resource

id

string

hyph-uuid

Unique ID of the FIC Service resource

name

string

-

Name of the FIC Service resource

zone

string

-

Name of zone

Examples

Sample Request Body

This operation does not send a request body.

Sample Response Body

{
  "fic_services": [
    {
      "description": "lab3 fic connectivity provider",
      "id": "d4006e79-9f60-4b72-9f86-5f6ef8b4e9e9",
      "name": "Lab3-FIC-Service-Provider-01",
      "zone": "Lab3"
    },
    {
      "description": "lab3 fic connectivity provider",
      "id": "63094f0a-81ee-4d7f-9b05-05c6a95aa8f2",
      "name": "Lab3-FIC-Service-Provider-02",
      "zone": "Lab3"
    }
  ]
}

Show Fic Service

Show details for fic_service.

Synchronous / Asynchronous

  • Synchronous

Request

HTTP Request Method

  • GET

HTTP Request Path

{endpoint}/v2.0/fic_services/{fic_service_id}

HTTP Request Parameters

Parameter

Style

Type

Format

Enumeration

Description

Required

fic_service_id

URI

string

hyph-uuid

-

Unique ID of the FIC Service resource

yes

Response

HTTP Response Code List

Response Code

Description

200

OK

400

Bad Request

401

UnAuthorized

404

Not Found

500

Internal Server Error

HTTP Response Parameters

Parameter

Type

Format

Description

fic_service

object

datatype_fic_service

-

description

string

-

Description of the FIC Service resource

id

string

hyph-uuid

Unique ID of the FIC Service resource

name

string

-

Name of the FIC Service resource

zone

string

-

Name of zone

Examples

Sample Request Body

This operation does not send a request body.

Sample Response Body

{
  "fic_service": {
    "description": "lab3 fic connectivity provider",
    "id": "d4006e79-9f60-4b72-9f86-5f6ef8b4e9e9",
    "name": "Lab3-FIC-Service-Provider-01",
    "zone": "Lab3"
  }
}