Update Metro2 Configuration for a customer

PUT /customers/{customer_id}/metro2_config

Add Metro2 Configuration to an existing customer, or Modify the Metro2 Configuration for an existing customer, to enable Credit Reporting on for that customer.

Path parameters

Body

Update Metro2/Bloom Configuration for a Customer

Responses

PUT /customers/{customer_id}/metro2_config
curl \
 -X PUT https://<your_environment_name>-uat-api.canopyservicing.com/customers/cust_30189/metro2_config \
 -H "Authorization: Bearer $ACCESS_TOKEN" \
 -H "Content-Type: application/json" \
 -d '{"bloom_metadata":{"address_type":"CONFIRMED","residence_type":"OWNS","account_designations":[{"account_id":"string","designation":"INDIVIDUAL"}]}}'
Request example
{
  "bloom_metadata": {
    "address_type": "CONFIRMED",
    "residence_type": "OWNS",
    "account_designations": [
      {
        "account_id": "string",
        "designation": "INDIVIDUAL"
      }
    ]
  }
}
Response example (200)
{
  "bloom_metadata": {
    "address_type": "CONFIRMED",
    "residence_type": "OWNS",
    "account_designations": [
      {
        "account_id": "string",
        "designation": "INDIVIDUAL"
      }
    ]
  }
}