分頁
依預設,清單中會載入25個資源。
_lineCount 引數可讓您限制回應中列出的資源數目。 然後您可以使用 next 節點來顯示下一個結果。
NOTE
一律使用 next 節點中傳回的URL值來執行分頁要求。
已計算**_lineStart**要求,且必須一律用於 next 節點中傳回的URL。
範例要求
顯示設定檔資源1個記錄的範例GET要求。
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile?_lineCount=1 \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
回應要求,使用 next 節點執行分頁。
{
"content": [
{
"PKey": "<PKEY>",
"firstName": "John",
"lastName":"Doe",
"birthDate": "1980-10-24",
...
}
],
"next": {
"href": "https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile/email?_lineCount=10&_
lineStart=@Qy2MRJCS67PFf8soTf4BzF7BXsq1Gbkp_e5lLj1TbE7HJKqc"
}
...
}
依預設,在與含有大量資料的資料表互動時,next 節點無法使用。 若要執行分頁,您必須將 _forcePagination=true 引數新增至您的呼叫URL。
-X GET https://mc.adobe.io/<ORGANIZATION>/campaign/profileAndServices/profile?_forcePagination=true \
-H 'Content-Type: application/json' \
-H 'Authorization: Bearer <ACCESS_TOKEN>' \
-H 'Cache-Control: no-cache' \
-H 'X-Api-Key: <API_KEY>'
NOTE
在Campaign Standard XtkBigTableThreshold 選項中定義了資料表被視為大型的記錄數。 預設值為100,000筆記錄。
recommendation-more-help
3ef63344-7f3d-48f9-85ed-02bf569c4fff