iOS · Example Payload

App Store Connect List Apps Example

iOSAppleMobileApp StorePush NotificationsIn-App PurchasesSubscriptionsAuthenticationWalletDeveloper Platform

App Store Connect List Apps Example is an example object payload from iOS, with 2 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

requestresponse

Example Payload

Raw ↑
{
  "request": {
    "method": "GET",
    "url": "https://api.appstoreconnect.apple.com/v1/apps?limit=2&fields[apps]=name,bundleId,sku",
    "headers": {
      "Authorization": "Bearer eyJhbGciOiJFUzI1NiIsImtpZCI6IkFCQ0RFRkdISUoifQ...redacted...",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "headers": { "Content-Type": "application/vnd.api+json" },
    "body": {
      "data": [
        {
          "type": "apps",
          "id": "1234567890",
          "attributes": {
            "name": "Naftiko",
            "bundleId": "com.naftiko.ios",
            "sku": "NAFTIKO-IOS-001"
          },
          "links": {
            "self": "https://api.appstoreconnect.apple.com/v1/apps/1234567890"
          }
        },
        {
          "type": "apps",
          "id": "1234567891",
          "attributes": {
            "name": "API Evangelist",
            "bundleId": "com.apievangelist.ios",
            "sku": "APIEV-IOS-001"
          },
          "links": {
            "self": "https://api.appstoreconnect.apple.com/v1/apps/1234567891"
          }
        }
      ],
      "links": {
        "self": "https://api.appstoreconnect.apple.com/v1/apps?limit=2",
        "next": "https://api.appstoreconnect.apple.com/v1/apps?cursor=Mg.Y2J1aWxk&limit=2"
      },
      "meta": { "paging": { "total": 14, "limit": 2 } }
    }
  }
}