Skip to content

Latest commit

 

History

History
230 lines (131 loc) · 6.59 KB

ServicesFunctionsApi.md

File metadata and controls

230 lines (131 loc) · 6.59 KB

ServicesFunctionsApi

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.

CreateFunction

ServerlessV1Function CreateFunction(ctx, ServiceSidoptional)

Create a new Function resource.

Create a new Function resource.

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 Function resource under.

Other Parameters

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.

Return type

ServerlessV1Function

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]

DeleteFunction

DeleteFunction(ctx, ServiceSidSid)

Delete a Function resource.

Delete a Function resource.

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 Function resource from.
Sid string The SID of the Function resource to delete.

Other Parameters

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

FetchFunction

ServerlessV1Function FetchFunction(ctx, ServiceSidSid)

Retrieve a specific Function resource.

Retrieve a specific Function resource.

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 Function resource from.
Sid string The SID of the Function resource to fetch.

Other Parameters

Other parameters are passed through a pointer to a FetchFunctionParams struct

Name Type Description

Return type

ServerlessV1Function

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]

ListFunction

[]ServerlessV1Function ListFunction(ctx, ServiceSidoptional)

Retrieve a list of all Functions.

Retrieve a list of all Functions.

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 Function resources from.

Other Parameters

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.

Return type

[]ServerlessV1Function

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]

UpdateFunction

ServerlessV1Function UpdateFunction(ctx, ServiceSidSidoptional)

Update a specific Function resource.

Update a specific Function resource.

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 Function resource from.
Sid string The SID of the Function resource to update.

Other Parameters

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.

Return type

ServerlessV1Function

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]