All URIs are relative to https://serverless.twilio.com
Method | HTTP request | Description |
---|---|---|
CreateFunction | Post /v1/Services/{ServiceSid}/Functions | Create a new Function resource. |
DeleteFunction | Delete /v1/Services/{ServiceSid}/Functions/{Sid} | Delete a Function resource. |
FetchFunction | Get /v1/Services/{ServiceSid}/Functions/{Sid} | Retrieve a specific Function resource. |
ListFunction | Get /v1/Services/{ServiceSid}/Functions | Retrieve a list of all Functions. |
UpdateFunction | Post /v1/Services/{ServiceSid}/Functions/{Sid} | Update a specific Function resource. |
ServerlessV1Function CreateFunction(ctx, ServiceSidoptional)
Create a new Function resource.
Create a new Function resource.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to create the Function resource under. |
Other parameters are passed through a pointer to a CreateFunctionParams struct
Name | Type | Description |
---|---|---|
FriendlyName | string | A descriptive string that you create to describe the Function resource. It can be a maximum of 255 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]
DeleteFunction(ctx, ServiceSidSid)
Delete a Function resource.
Delete a Function resource.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to delete the Function resource from. |
Sid | string | The SID of the Function resource to delete. |
Other parameters are passed through a pointer to a DeleteFunctionParams 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]
ServerlessV1Function FetchFunction(ctx, ServiceSidSid)
Retrieve a specific Function resource.
Retrieve a specific Function resource.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to fetch the Function resource from. |
Sid | string | The SID of the Function resource to fetch. |
Other parameters are passed through a pointer to a FetchFunctionParams 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]
[]ServerlessV1Function ListFunction(ctx, ServiceSidoptional)
Retrieve a list of all Functions.
Retrieve a list of all Functions.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to read the Function resources from. |
Other parameters are passed through a pointer to a ListFunctionParams 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]
ServerlessV1Function UpdateFunction(ctx, ServiceSidSidoptional)
Update a specific Function resource.
Update a specific Function resource.
Name | Type | Description |
---|---|---|
ctx | context.Context | context for authentication, logging, cancellation, deadlines, tracing, etc. |
ServiceSid | string | The SID of the Service to update the Function resource from. |
Sid | string | The SID of the Function resource to update. |
Other parameters are passed through a pointer to a UpdateFunctionParams struct
Name | Type | Description |
---|---|---|
FriendlyName | string | A descriptive string that you create to describe the Function resource. It can be a maximum of 255 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]