# Add a Closed Date to PAN
source: https://developer.mastercard.com/account-catalog-services/documentation/testing/pan-registration-bau-depricated/closing-a-pan/scenario11/index.md

## Add a Closed Date to PAN {#add-a-closed-date-to-pan}

### Account Catalog Services API Request {#account-catalog-services-api-request}

* `requestId`: "request10"
* authorization: "reqKey"

* JSON

```JSON
{
  "accountIdentifier": "XXXXXXXXXXXXXXXX",
  "accountIndicator": "PRIMARY_ACCOUNT_NUMBER",
  "accountLevelManagementServiceProperties": {
    "accountIdentifierStatus": "A",
    "accountIdentifierClosedDate": "20260411"
  }
}
```

### Account Catalog Services API Response {#account-catalog-services-api-response}

* `requestId`: "request10"

* JSON

```JSON
{
  "accountIdentifier": "XXXXXXXXXXXXXXXX",
  "accountIndicator": "PRIMARY_ACCOUNT_NUMBER",
  "accountLevelManagementServiceResult": {
    "responseIndicator": "ACCEPTED",
    "responseType": "INTERIM",
    "accountIdentifierStatus": "A",
    "accountIdentifierClosedDate": "20260411",
    "accountCategoryCode": "B",
    "actionCodes": [],
    "rejectCodes": [],
    "almServiceCode": "00126",
    "almServiceProductCode": "",
    "almServiceProductClass": "XXX",
    "almServiceRateType": "XXX"
  }
}
```

### Account Catalog Services detail response API {#account-catalog-services-detail-response-api}

* `requestId`: "request10"
* authorization: "respKey"

* JSON

```JSON
{
  "accountIdentifier": "XXXXXXXXXXXXXXXX",
  "accountIndicator": "PRIMARY_ACCOUNT_NUMBER",
  "accountLevelManagementServiceResult": {
    "responseIndicator": "ACCEPTED",
    "responseType": "FINAL",
    "accountIdentifierStatus": "A",
    "accountIdentifierClosedDate": "20260411",
    "accountCategoryCode": "B",
    "actionCodes": [
      "A0000102",
      "A0000108"
    ],
    "rejectCodes": [],
    "almServiceCode": "00126",
    "almServiceProductCode": "MCW",
    "almServiceProductClass": "MCW",
    "almServiceRateType": "10",
    "serviceClassificationCodes": [
      "ENVL"
    ]
  }
}
```

### Account Catalog Services detail response API Acknowledgment {#account-catalog-services-detail-response-api-acknowledgment}

* `requestId`: "request10"
* authorization: "respKey"

* JSON

```JSON
{
  "message": " Request has been accepted successfully."
}
```

