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. |
ServerlessV1Environment CreateEnvironment(ctx, ServiceSidoptional)
Create a new environment.
Create a new environment.
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 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. |
- 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(ctx, ServiceSidSid)
Delete a specific environment.
Delete a specific environment.
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 are passed through a pointer to a DeleteEnvironmentParams struct
Name | Type | Description |
---|
(empty response body)
- Content-Type: Not defined
- Accept: Not defined
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ServerlessV1Environment FetchEnvironment(ctx, ServiceSidSid)
Retrieve a specific environment.
Retrieve a specific environment.
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 are passed through a pointer to a FetchEnvironmentParams struct
Name | Type | Description |
---|
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
[]ServerlessV1Environment ListEnvironment(ctx, ServiceSidoptional)
Retrieve a list of all environments.
Retrieve a list of all environments.
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 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. |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]