All URIs are relative to https://serverless.twilio.com
Method | HTTP request | Description |
---|---|---|
CreateVariable | Post /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables | Create a new Variable. |
DeleteVariable | Delete /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid} | Delete a specific Variable. |
FetchVariable | Get /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid} | Retrieve a specific Variable. |
ListVariable | Get /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables | Retrieve a list of all Variables. |
UpdateVariable | Post /v1/Services/{ServiceSid}/Environments/{EnvironmentSid}/Variables/{Sid} | Update a specific Variable. |
ServerlessV1Variable CreateVariable(ctx, ServiceSidEnvironmentSidoptional)
Create a new Variable.
Create a new Variable.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to create the Variable resource under. |
EnvironmentSid | string | The SID of the Environment in which the Variable resource exists. |
Other parameters are passed through a pointer to a CreateVariableParams struct
Name | Type | Description |
---|---|---|
Key | string | A string by which the Variable resource can be referenced. It can be a maximum of 128 characters. |
Value | string | A string that contains the actual value of the Variable. It can be a maximum of 450 bytes in size. |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
DeleteVariable(ctx, ServiceSidEnvironmentSidSid)
Delete a specific Variable.
Delete a specific Variable.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to delete the Variable resource from. |
EnvironmentSid | string | The SID of the Environment with the Variables to delete. |
Sid | string | The SID of the Variable resource to delete. |
Other parameters are passed through a pointer to a DeleteVariableParams 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]
ServerlessV1Variable FetchVariable(ctx, ServiceSidEnvironmentSidSid)
Retrieve a specific Variable.
Retrieve a specific Variable.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to fetch the Variable resource from. |
EnvironmentSid | string | The SID of the Environment with the Variable resource to fetch. |
Sid | string | The SID of the Variable resource to fetch. |
Other parameters are passed through a pointer to a FetchVariableParams 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]
[]ServerlessV1Variable ListVariable(ctx, ServiceSidEnvironmentSidoptional)
Retrieve a list of all Variables.
Retrieve a list of all Variables.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to read the Variable resources from. |
EnvironmentSid | string | The SID of the Environment with the Variable resources to read. |
Other parameters are passed through a pointer to a ListVariableParams 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]
ServerlessV1Variable UpdateVariable(ctx, ServiceSidEnvironmentSidSidoptional)
Update a specific Variable.
Update a specific Variable.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to update the Variable resource under. |
EnvironmentSid | string | The SID of the Environment with the Variable resource to update. |
Sid | string | The SID of the Variable resource to update. |
Other parameters are passed through a pointer to a UpdateVariableParams struct
Name | Type | Description |
---|---|---|
Key | string | A string by which the Variable resource can be referenced. It can be a maximum of 128 characters. |
Value | string | A string that contains the actual value of the Variable. It can be a maximum of 450 bytes in size. |
- Content-Type: application/x-www-form-urlencoded
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]