[限定提供(LA)]{class="badge informative" title="Campaign Standard移行済みユーザーに制限"}
並べ替え
デフォルトでは、昇順で並べ替えることができます。 降順で並べ替えるには、_order パラメーターの値に %20desc を追加します。
フィールドが並べ替え可能かどうかを知るには、リソースメタデータに対して「並べ替え可能」パラメーターを確認します。 詳しくは、この節を参照してください。
サンプルリクエスト
-
データベース内のメールをアルファベット順に取得するサンプルGETリクエスト。
code language-none -X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/email?_order=email \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Cache-Control: no-cache' \ -H 'X-Api-Key: <API_KEY>'
リクエストに対する応答。
code language-none { "content": [ "adam@email.com", "allison.durance@example.com", "amy.dakota@mail.com", "andrea.johnson@mail.com", ... ] ... }
-
データベース内のメールをアルファベットの降順で取得するサンプルGETリクエスト。
code language-none -X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/email?_order=email%20desc \ -H 'Content-Type: application/json' \ -H 'Authorization: Bearer <ACCESS_TOKEN>' \ -H 'Cache-Control: no-cache' \ -H 'X-Api-Key: <API_KEY>'
リクエストに対する応答。
code language-none { "content": [ "tombinder@example.com", "tombinder@example.com", "timross@example.com", "john.smith@example.com", ... ] }
recommendation-more-help
7167b251-0f24-48cd-a4e0-234fe2acbdea