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
-
customer_id string Required
ID of the Customer
Body
Update Metro2/Bloom Configuration for a Customer
-
bloom_metadata object
Bloom API fields for customers: https://docs.bloom.dev/docs/furnishment-api/b3A6MjA1NTM1MQ-create-consumer
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"
}
]
}
}