Skip to content

Latest commit

 

History

History
186 lines (106 loc) · 5.45 KB

ServicesEnvironmentsApi.md

File metadata and controls

186 lines (106 loc) · 5.45 KB

ServicesEnvironmentsApi

All URIs are relative to https://serverless.twilio.com

Method HTTP request Description
CreateEnvironment Post /v1/Services/{ServiceSid}/Environments Create a new environment.
DeleteEnvironment Delete /v1/Services/{ServiceSid}/Environments/{Sid} Delete a specific environment.
FetchEnvironment Get /v1/Services/{ServiceSid}/Environments/{Sid} Retrieve a specific environment.
ListEnvironment Get /v1/Services/{ServiceSid}/Environments Retrieve a list of all environments.

CreateEnvironment

ServerlessV1Environment CreateEnvironment(ctx, ServiceSidoptional)

Create a new environment.

Create a new environment.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to create the Environment resource under.

Other Parameters

Other parameters are passed through a pointer to a CreateEnvironmentParams struct

Name Type Description
UniqueName string A user-defined string that uniquely identifies the Environment resource. It can be a maximum of 100 characters.
DomainSuffix string A URL-friendly name that represents the environment and forms part of the domain name. It can be a maximum of 16 characters.

Return type

ServerlessV1Environment

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: application/x-www-form-urlencoded
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

DeleteEnvironment

DeleteEnvironment(ctx, ServiceSidSid)

Delete a specific environment.

Delete a specific environment.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to delete the Environment resource from.
Sid string The SID of the Environment resource to delete.

Other Parameters

Other parameters are passed through a pointer to a DeleteEnvironmentParams struct

Name Type Description

Return type

(empty response body)

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: Not defined

[Back to top] [Back to API list] [Back to Model list] [Back to README]

FetchEnvironment

ServerlessV1Environment FetchEnvironment(ctx, ServiceSidSid)

Retrieve a specific environment.

Retrieve a specific environment.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to fetch the Environment resource from.
Sid string The SID of the Environment resource to fetch.

Other Parameters

Other parameters are passed through a pointer to a FetchEnvironmentParams struct

Name Type Description

Return type

ServerlessV1Environment

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]

ListEnvironment

[]ServerlessV1Environment ListEnvironment(ctx, ServiceSidoptional)

Retrieve a list of all environments.

Retrieve a list of all environments.

Path Parameters

Name Type Description
ctx context.Context context for authentication, logging, cancellation, deadlines, tracing, etc.
ServiceSid string The SID of the Service to read the Environment resources from.

Other Parameters

Other parameters are passed through a pointer to a ListEnvironmentParams struct

Name Type Description
PageSize int How many resources to return in each list page. The default is 50, and the maximum is 1000.
Limit int Max number of records to return.

Return type

[]ServerlessV1Environment

Authorization

accountSid_authToken

HTTP request headers

  • Content-Type: Not defined
  • Accept: application/json

[Back to top] [Back to API list] [Back to Model list] [Back to README]