Shared APIs
/Billing Codes APIs
//Update Company Code
Update the code and/or description for the specified id.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/costaccountmgmt/api/v1/companyCodes/{id}
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/costaccountmgmt/api/v1/companyCodes/{id}
curl -i -X PUT \
'https://api-sandbox.sendpro360.pitneybowes.com/costaccountmgmt/api/v1/companyCodes/{id}' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-H 'X-PB-Developer-Partner-ID: string' \
-d '{
"code": "COMP001",
"description": "This is description for updated company code COMP001-u1"
}'Response
{ "id": "cmpy12345xyz" }