Skip to content

Latest commit

 

History

History
99 lines (57 loc) · 3.09 KB

ServicesAssetsVersionsApi.md

File metadata and controls

99 lines (57 loc) · 3.09 KB

ServicesAssetsVersionsApi

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

Method HTTP request Description
FetchAssetVersion Get /v1/Services/{ServiceSid}/Assets/{AssetSid}/Versions/{Sid} Retrieve a specific Asset Version.
ListAssetVersion Get /v1/Services/{ServiceSid}/Assets/{AssetSid}/Versions Retrieve a list of all Asset Versions.

FetchAssetVersion

ServerlessV1AssetVersion FetchAssetVersion(ctx, ServiceSidAssetSidSid)

Retrieve a specific Asset Version.

Retrieve a specific Asset Version.

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 Asset Version resource from.
AssetSid string The SID of the Asset resource that is the parent of the Asset Version resource to fetch.
Sid string The SID of the Asset Version resource to fetch.

Other Parameters

Other parameters are passed through a pointer to a FetchAssetVersionParams struct

Name Type Description

Return type

ServerlessV1AssetVersion

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]

ListAssetVersion

[]ServerlessV1AssetVersion ListAssetVersion(ctx, ServiceSidAssetSidoptional)

Retrieve a list of all Asset Versions.

Retrieve a list of all Asset Versions.

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 Asset Version resource from.
AssetSid string The SID of the Asset resource that is the parent of the Asset Version resources to read.

Other Parameters

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

[]ServerlessV1AssetVersion

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]