[BEGRÄNSAD TILLGÄNGLIGHET]{class="badge informative" title="Begränsat till användare som migrerats till Campaign Standarden"}

Sortering

Sortering är tillgängligt som standard i stigande ordning. Om du vill sortera i fallande ordning lägger du till %20desc i värdet för parametern _order.

Om du vill veta om ett fält kan sorteras kontrollerar du parametern "sorterable" i metadata för resursen. Mer information om detta finns i det här avsnittet.

Exempelbegäranden

  • Exempelbegäran om GET för att hämta e-post i databasen i alfabetisk ordning.

    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>'
    

    Svar på begäran.

    code language-none
    {
    "content": [
        "adam@email.com",
        "allison.durance@example.com",
        "amy.dakota@mail.com",
        "andrea.johnson@mail.com",
        ...
    ]
    ...
    }
    
  • Exempelbegäran om GET för att hämta e-postmeddelandet i databasen i fallande alfaordning.

    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>'
    

    Svar på begäran.

    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