"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."
Security
bearerAuth
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.
Example:"xqlNEXQPL0mEod4"
This is developer Partner email ID on which onboarding invitation has been sent.
Example:"NS05_merchant@yopmail.com"
This is the client ID of the developer who has created the invitation.
Example:"0oa20m6vx3wAZW7FQ0h8"
This is the link to the onboarding invitation for the developer partner.
Example:"https://api-sandbox.sendpro360.pitneybowes.com/merchant-signup?invitationId4&invitationType=ONBOARD_REQUEST"
Timestamp information about when the invitation was created.
Example:"2024-09-15T12:40:24.256521003Z"
Timestamp information about when the invitation was last updated.
Example:"0001-01-01T00:00:00Z"
Response
{ "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" }