Waste Management · Example Payload

Waste Management Getcustomeroverview Example

Environmental ServicesFortune 500RecyclingSolid WasteSustainabilityWaste Management

Waste Management Getcustomeroverview Example is an example object payload from Waste Management, with 3 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

summaryrequestresponse

Example Payload

Raw ↑
{
  "summary": "Get Customer Overview",
  "request": {
    "method": "GET",
    "url": "https://api.wm.com/v1/customers",
    "headers": {
      "Authorization": "Bearer <JWT>",
      "Request-Tracking-Id": "a1b2c3d4-e5f6-7890-abcd-ef1234567890",
      "ClientId": "your-client-id",
      "Accept": "application/json"
    }
  },
  "response": {
    "status": 200,
    "body": {
      "customerId": "123456789",
      "accountName": "Acme Corp",
      "balanceDue": 145.50,
      "primaryContact": {
        "firstName": "Jane",
        "lastName": "Smith",
        "email": "jane.smith@acme.com",
        "phone": "555-867-5309"
      },
      "serviceAddress": {
        "street": "123 Main Street",
        "city": "Houston",
        "state": "TX",
        "zip": "77001",
        "country": "US"
      }
    }
  }
}