import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const user = await client.referral.users.create({ userIds: ['182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'] });
console.log(user.message);
{
"message": "<string>"
}
This endpoint allows you to create a referral user
import SnagSolutions from '@snagsolutions/sdk';
const client = new SnagSolutions({
apiKey: 'My API Key',
});
const user = await client.referral.users.create({ userIds: ['182bd5e5-6e1a-4fe4-a799-aa6d9a6ab26e'] });
console.log(user.message);
{
"message": "<string>"
}
Body
The body is of type object
.
200
The response is of type object
.
Was this page helpful?