Retrieve a catalog

Retrieves the details of an existing catalog. You need to pass the unique impact.com catalog Id that was returned when listing catalogs.

Parameters


No parameters.

Returns


Returns a catalog object if a valid identifier is provided. Returns an error for invalid or deleted contact identifiers.

Example Request


curl 'https://api.impact.com/Advertisers/<AccountSID>/Catalogs/1234' \
  -X GET \
  -u '<AccountSID>:<AuthToken>' \
  -H 'Accept: application/json'

Example Response


{
  "Id": "1234",
  "Name": "ACME Catalog",
  "Filename": "anvils.xml",
  "AdvertiserId": "7777777",
  "CampaignId": "1000",
  "Status": "PENDING",
  "NumberOfItems": "25",
  "DateLastUpdated": "",
  "UploadMethod": "IMPACT_RADIUS_FTP_SERVER",
  "ItemsUri": "/Advertisers/<AccoutnSID>/Catalogs/1234/Items",
  "Uri": "/Advertisers/<AccountSID>/Catalogs/1234"
}