Skip to content

Latest commit

 

History

History
237 lines (138 loc) · 7.47 KB

ServicesEnvironmentsVariablesApi.md

File metadata and controls

237 lines (138 loc) · 7.47 KB

ServicesEnvironmentsVariablesApi

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.

CreateVariable

ServerlessV1Variable CreateVariable(ctx, ServiceSidEnvironmentSidoptional)

Create a new Variable.

Create a new Variable.

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 Variable resource under.
EnvironmentSid string The SID of the Environment in which the Variable resource exists.

Other Parameters

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.

Return type

ServerlessV1Variable

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]

DeleteVariable

DeleteVariable(ctx, ServiceSidEnvironmentSidSid)

Delete a specific Variable.

Delete a specific Variable.

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 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

Other parameters are passed through a pointer to a DeleteVariableParams 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]

FetchVariable

ServerlessV1Variable FetchVariable(ctx, ServiceSidEnvironmentSidSid)

Retrieve a specific Variable.

Retrieve a specific Variable.

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 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

Other parameters are passed through a pointer to a FetchVariableParams struct

Name Type Description

Return type

ServerlessV1Variable

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]

ListVariable

[]ServerlessV1Variable ListVariable(ctx, ServiceSidEnvironmentSidoptional)

Retrieve a list of all Variables.

Retrieve a list of all Variables.

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 Variable resources from.
EnvironmentSid string The SID of the Environment with the Variable resources to read.

Other Parameters

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.

Return type

[]ServerlessV1Variable

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]

UpdateVariable

ServerlessV1Variable UpdateVariable(ctx, ServiceSidEnvironmentSidSidoptional)

Update a specific Variable.

Update a specific Variable.

Path Parameters

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

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.

Return type

ServerlessV1Variable

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]