# Information Requests

## Information Requested Callback

#### Callback Request Parameters

* `Id:` is the unique identifier for the exchange transaction.
* `Type:`“INFORMATION\_REQUESTED” when more information is required
* `CustomerId:` int

#### Callback Example

```json
{
        "Id":"706fdb74-08cc-4954-a67c-17b4e2163419",
        "Type": "INFORMATION_REQUESTED",
        "Data": {
                "CustomersId":2464,
                "UpdatedInformationRequestIds": "1013"
          }
}
```

## Information Request Updated Callback

* `Id:` is the unique identifier for the exchange transaction.
* `Type:` “INFORMATION\_REQUEST\_UPDATED” when the information response is approved
* `CustomerId`: int

Callback Example:

```json
{
        "Id":"386cf6ed-e858-4bb9-b107-1bebfa82f980",
        "Type":"INFORMATION_REQUEST_UPDATED",
        "Data":{
                "CustomersId":2464,
                "UpdatedInformationRequestIds": "1013"
        }
} 
```
