APIs for creating and managing developer partner onboarding invitations. These APIs support the initiation of the onboarding process by generating invitation requests tied to a partner email address and a defined validity period. They are used to control partner access to the onboarding flow and ensure that invitation requests remain unique per email address until expiry.
"This operation creates the partner onboarding email invitation. These are the requirements to create this request:
- Email Address: Email ID of the developer partner. Only one request can be generated per email address.
- Request Expiration Days: User needs to specifies how long the onboarding invitation is valid. Once the invitation expires, a new invitation request can be generated on the same email address."
This creates onboarding email invitation.
- Sandbox Serverhttps://api-sandbox.sendpro360.pitneybowes.com/developerprofile/api/v1/invitation
- Production Server (uses live data)https://api.sendpro360.pitneybowes.com/developerprofile/api/v1/invitation
curl -i -X POST \
https://api-sandbox.sendpro360.pitneybowes.com/developerprofile/api/v1/invitation \
-H 'Authorization: Bearer <YOUR_TOKEN_HERE>' \
-H 'Content-Type: application/json' \
-d '{
"partnerEmailId": "NS05_merchant@yopmail.com",
"expirationDays": 10
}'The onboarding invitation has been created successfully.
This is a Unique invitation ID against the developer who is inviting partner for onboarding.
This is developer Partner email ID on which onboarding invitation has been sent.
This is the client ID of the developer who has created the invitation.
This is the link to the onboarding invitation for the developer partner.
Timestamp information about when the invitation was created.
Timestamp information about when the invitation was last updated.
{ "invitationId": "xqlNEXQPL0mEod4", "developerId": "sacd74e", "email": "NS05_merchant@yopmail.com", "status": "Invited", "invitationType": "ONBOARD_REQUEST", "createdBy": "0oa20m6vx3wAZW7FQ0h8", "provisioningRequestID": null, "archived": false, "link": "https://api-sandbox.sendpro360.pitneybowes.com/merchant-signup?invitationId4&invitationType=ONBOARD_REQUEST", "insertTimestamp": "2024-09-15T12:40:24.256521003Z", "updateTimestamp": "0001-01-01T00:00:00Z", "expirationDate": "2024-09-25T12:40:24.254719091Z" }