この文章は Salesforce 機械翻訳システムを使用して翻訳されました。詳細はこちらをご参照ください。
英語に切り替える

呼び出し可能アクションの取得

呼び出し可能な標準アクションおよびカスタムアクションの URI を Salesforce から取得します。このリソースは REST API バージョン 32.0 以降で使用できます。

URI

/services/data/vXX.X/actions

形式

JSON、XML

HTTP のメソッド

GET

認証

Authorization: Bearer token

要求パラメータ

不要

リクエストの例

1curl https://MyDomainName.my.salesforce.com/services/data/v59.0/actions -H "Authorization: Bearer token"

レスポンスボディの例

1{
2  "standard" : "/services/data/v59.0/actions/standard",
3  "custom" : "/services/data/v59.0/actions/custom"
4}