Extend Showcase Resource
API Description
Extend the end date for a specific showcase resource. Supply the unique Apple-generated ID assigned to the partner's showcase, along with the showcase's new end date, and the service will return the corresponding resource in full.
note
Showcase must be "live" on a device in order to be extended.
Request
URI Parameters
| Name | Input |
|---|---|
orgId | |
brandId | |
showcaseId |
Path Template
POST {url}/api/{version}/orgs/{orgId}/brands/{brandId}/showcases/{showcaseId}/extend
Path Example
POST {url}/api/v1/orgs/9467895078742654934/brands/9467895078742654921/showcases/9467895078742654903/extend
Request Headers
| Name | Input |
|---|---|
Authorization | |
Content-Type | |
If-Match |
Example Request Headers
Authorization: Bearer <access_token>
Content-Type: application/json
If-Match: "01b32fca-ddd5-11ec-b980-3b362b75a5bc"
Request Body
| Name | Input |
|---|---|
$.id | |
$.showcaseDetails | |
$.showcaseDetails.endDate |
Example Request Body (raw JSON)
{
"id": "9467895078742654903",
"showcaseDetails": {
"endDate": "2026-10-25T00:00:00.00Z"
}
}
Response
200 OK or Error
Response Headers
| Name |
|---|
apple-request-id |
content-type |
etag |
location |
Example Response Headers
HTTP/1.1 200 OK
apple-request-id: 0cb5b5c3-4fa8-4baa-8b8f-e8f9127bf130
content-type: application/json
etag: "a6ca83ce-ddd4-11ec-b42c-df835f144710"
location: /api/v1/orgs/9467895078742654934/brands/9467895078742654921/showcases/9467895078742654903
Response Body
| Name | Output |
|---|---|
$.orgId | |
$.brandId | |
$.id | |
$.createdDate | |
$.updatedDate | |
$.state | |
$.etag | |
$.showcaseDetails | |
$.validationReports[] |
Example Response Body (raw JSON)
{
"orgId": "9467895078742654934",
"brandId": "9467895078742654921",
"id": "9467895078742654903",
"etag": "a6ca83ce-ddd4-11ec-b42c-df835f144710",
"createdDate": "2026-09-21T00:00:00.00Z",
"updatedDate": "2026-09-27T16:33:16.00Z",
"state": "SUBMITTED",
"showcaseDetails": {
"startDate": "2026-10-01T00:00:00.00Z",
"endDate": "2026-10-25T00:00:00.00Z",
"resourceDetails": {
"resourceType": "LOCATION",
"resourceId": "9467895078742654918"
},
"creativeId": "9467895078742654987"
},
"validationReports": []
}