CreateEmailReferral
From ePrize Developers Wiki
(Difference between revisions)
(New page: ==Summary== Create an email referral. '''Resource''' POST api/v1/createEmailReferral '''Parameters''' userId refereeName refereeEmail '''Example Call''' http://demo-loyalty.promodev....) |
m (→Summary) |
||
Line 10: | Line 10: | ||
'''Parameters''' | '''Parameters''' | ||
- | userId | + | * userId |
- | refereeName | + | * refereeName |
- | refereeEmail | + | * refereeEmail |
- | + | Example Request Body | |
- | + | { | |
- | + | "userId": 278000000118, | |
- | { | + | "refereeName": “Jon”, |
- | + | "refereeEmail": " jon.doe@helloworld.com " | |
- | + | } | |
- | + | ||
- | } | + | |
Example Response: Success | Example Response: Success | ||
- | { | + | { |
- | + | "success": true | |
- | } | + | } |
Current revision
Summary
Create an email referral.
Resource
POST api/v1/createEmailReferral
Parameters
- userId
- refereeName
- refereeEmail
Example Request Body
{ "userId": 278000000118, "refereeName": “Jon”, "refereeEmail": " jon.doe@helloworld.com " }
Example Response: Success
{ "success": true }