Skip to content

Latest commit

 

History

History
99 lines (57 loc) · 3.24 KB

ServicesFunctionsVersionsApi.md

File metadata and controls

99 lines (57 loc) · 3.24 KB

ServicesFunctionsVersionsApi

All URIs are relative to https://serverless.twilio.com

Method HTTP request Description
FetchFunctionVersion Get /v1/Services/{ServiceSid}/Functions/{FunctionSid}/Versions/{Sid} Retrieve a specific Function Version resource.
ListFunctionVersion Get /v1/Services/{ServiceSid}/Functions/{FunctionSid}/Versions Retrieve a list of all Function Version resources.

FetchFunctionVersion

ServerlessV1FunctionVersion FetchFunctionVersion(ctx, ServiceSidFunctionSidSid)

Retrieve a specific Function Version resource.

Retrieve a specific Function Version 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 Version resource from.
FunctionSid string The SID of the function that is the parent of the Function Version resource to fetch.
Sid string The SID of the Function Version resource to fetch.

Other Parameters

Other parameters are passed through a pointer to a FetchFunctionVersionParams struct

Name Type Description

Return type

ServerlessV1FunctionVersion

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]

ListFunctionVersion

[]ServerlessV1FunctionVersion ListFunctionVersion(ctx, ServiceSidFunctionSidoptional)

Retrieve a list of all Function Version resources.

Retrieve a list of all Function Version resources.

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 Version resources from.
FunctionSid string The SID of the function that is the parent of the Function Version resources to read.

Other Parameters

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

[]ServerlessV1FunctionVersion

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]