This operation retrieves the list of custom fields defined on the platform.
Custom fields are additional package fields that can be displayed on PitneyTrack workflow pages.Custom fields can be created from My Settings > Custom Fields > Add Custom Field in the platform settings.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/platformapis/api/v1/customfields
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/platformapis/api/v1/customfields
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/platformapis/api/v1/customfields?skip=0&limit=25&searchBy=status%3AACTIVE%2C%20name%3AcustomFieldName&query=name%3AcustomFieldName' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'Response
- string
- Array of strings
{ "pageInfo": { "totalCount": 30, "startCount": 1, "limit": 20 }, "customFields": [ { "customFieldId": "mMa0VjWvqbk8", "name": "Shelf#", "customFieldType": "CHECKBOX", "defaultValue": "top", "status": "ACTIVE", "archived": false, "values": "Male", "assignPageForm": [ … ] } ] }