쪽 매기기
기본적으로 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 노드는 많은 양의 데이터가 있는 테이블과 상호 작용할 때 사용할 수 없습니다. 페이지 매김을 수행하려면 호출 URL에 _forcePagination=true 매개 변수를 추가해야 합니다.
-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