Shared APIs
/Address Book APIs
/- Get Contact list or Search Contact
Create Contact
Get Contact by contactID
Update Contact details
Update specific fields of Contact
Delete contact
Get Contact list or Searc...
This operation retrieves a list of contacts or searches for specific contacts based on the provided filters.
Security
bearerAuth
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/addressbookmgmt/api/v1/contact/search
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/addressbookmgmt/api/v1/contact/search
curl -i -X GET \
'https://api-sandbox.sendpro360.pitneybowes.com/addressbookmgmt/api/v1/contact/search?skip=0&limit=20&sort=name%3Aasc&searchBy=name%3AJohn&filterBy=name%3Abegins%26contactType%3AALL' \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>'The Contact list has been retrived successfully.
Array []
A unique identifier for the contact. One personnelId can be associated with only one contact. If not set, the personnelId will default to null.
Example:"12RT345"
This is the type of contact:
S: Shared contact created at the subscription level and accessible to all users within the subscription.U: Contact created at the user level and private to that user only.- Default is Subscription.
Enum:"S""U"
Example:"S"
The type of contact to be created.
RECIPIENT: The contact is a recipient.SENDER: The contact is a sender.ALL: The contact can be both sender and recipient.
Enum:"RECIPIENT""SENDER""ALL"
Example:"RECIPIENT"
A list of additional email addresses of the searched contact.
Example:
[ "test@pb.com" ]
A list of other names associated with the searched contact.
Example:
[ "testotherNames1" ]
Response
[ { "contactId": "6763e149671f04cace818d76", "personnelID": "12RT345", "type": "S", "contactType": "RECIPIENT", "name": "ContactTrans_101", "company": "Pitney Bowes", "addresses": [ { … } ], "email": { "label": "Home", "email": "testuser@yopmail.com" }, "additionalEmailIds": [ "test@pb.com" ], "phone": { "label": "Home", "phone": "2037963184", "isdCode": "string" }, "customFields": [ { … } ], "otherNames": [ "testotherNames1" ], "insertTimestamp": "2024-12-19T09:03:05.072Z", "updateTimestamp": "0001-01-01T00:00:00Z", "archived": false, "createdBy": "0oa27r9p8nfpRUqvv0h8", "updatedBy": "0oa27r9p8nfpRUqvv0h8", "internalDelivery": { "enabledInternalDelivery": true, "mailStopId": "4a0e2Bbshdh", "officeLocationId": "4a0e2Bb4Njw" }, "notification": { "enabledEmailNotification": true, "enabledSMSNotification": false, "enabledAccessibilityAccommodations": false } } ]