リソースの関連付けを取得する
リソースの関連付けのページ分割されたリストを取得します。
Request rate limit:
1 requests / 秒 (アカウント1件につき)
query パラメータ
page | integer <int32> >= 0 Default: 0 取得する結果ページ (0..N)。 |
size | integer <int32> [ 1 .. 1000 ] Default: 20 ページあたりのレコード数。 |
resourceType | string Enum: "NUMBER" "DOMAIN" "ALPHA" 使用するリソースのタイプ。 |
channel | string Enum: "SMS" "MMS" "EMAIL" リソースが使用されるチャネル。 |
applicationId | string <= 255 characters Example: applicationId=test-application アプリケーションの一意の識別子。この ID は URL パス パラメーターになります。他の API エンドポイントとのやり取りを容易にするために、URL エンコードを必要としない値を使用することをお勧めします。 |
entityId | string <= 255 characters Example: entityId=test-entity エンティティの一意の識別子。この ID は URL パス パラメーターになります。他の API エンドポイントとのやり取りを容易にするために、URL エンコードを必要としない値を使用することをお勧めします。 |
resourceId | string <= 255 characters Example: resourceId=test-resource リソースの一意の識別子。これは、 |
レスポンス
200
OK
401
Unauthorized
403
Forbidden
429
Too Many Requests
500
Internal Server Error
サンプルをリクエストする
- cURL
- Java
- C#
- Go
- Python
- PHP
- JavaScript
- NodeJs
- Ruby
例
cURL
コピー
curl -L -g 'https://{baseUrl}/provisioning/1/associations?applicationId=test-application&entityId=test-entity&resourceId=test-resource' \ -H 'Authorization: {authorization}' \ -H 'Accept: application/json'
レスポンス例
- 200
- 401
- 403
- 429
- 500
コンテンツタイプ
application/json
コピー
すべて折りたたむ {- "results": [
- {
- "resourceType": "NUMBER",
- "channel": "SMS",
- "applicationId": "test-application",
- "entityId": "test-entity",
- "resourceId": "test-resource"
}
], - "paging": {
- "page": 0,
- "size": 1,
- "totalPages": 0,
- "totalResults": 0
}
}

© NTTCom Online Marketing Solutions Corporation