Docs are work in progress
Skip to main content

Add app service

POST 

/api/v1/app-services

This API endpoint add an app service. You can specify details during the addition process, including a app name, target port, local port, etc.

Request

Body

required

The request body containing the required details to add app service

    appName string
    dnsName string

    portMappings

    object[]

  • Array [

  • targetPort int32

    Possible values: >= 1 and <= 65535

    localPort int32

    Possible values: >= 1 and <= 65535

    description string
  • ]

  • machineIdOrAliasList string[]

Responses

Success response

Schema

    success boolean
    message string
    status string
    statusCode int32
    errorCode string
    subErrors object[]

    payload

    object

    Schema for app services response

    appId string
    appName string
    dnsName string

    portMappings

    object[]

  • Array [

  • targetPort int32
    localPort int32
    protocol string
    description string
  • ]

  • machineIdOrAliasList string[]
Loading...