UPS API ISSUE

Hello, I am working on integrating UPS REST API and getting error message: {“response”:{“errors”:[{“code”:”110609″,”message”:”All package dimensions are required and each must be greater than 0 for package 1.”}]}} This is my code: <!— Get UPS Access Token Information —> <cfhttp url=”https://wwwcie.ups.com/security/v1/oauth/token” method=”post” result=”ups_authorization”> <cfhttpparam type=”header” name=”Content-Type” value=”application/x-www-form-urlencoded” /> <cfhttpparam type=”header” name=”x-merchant-id” value=”#UPSAccountNumber#” /> <cfhttpparam type=”header” name=”Authorization” value=”Basic #ToBase64(clientID & ‘:’ & secretKey)#” /> <cfhttpparam name=”grant_type” value=”client_credentials” type=”formfield”> </cfhttp> <cfset ups_access_token_json = DeserializeJSON(ToString(ups_authorization.filecontent)) /> <cfset ups_access_token = ups_access_token_json.access_token /> <!— Get […]