Transfer Whitelist

Transfer a product license from a user to a different user

This endpoint facilitates the transfer of a product license from one user (User A) to another user (User B) within your hub. By executing this route, you can seamlessly reassign product access, ensuring that licenses are directed to the correct individuals.

Transfer a license from one user to a different user

PATCH https://v2.parcelroblox.com/whitelist/transfer

Example of how you have to pass the body parameters:

Headers

NameTypeDescription

Authorization*

string

prod_DGzVhVsrqNJi4b0Chd9mMPUI9

Content-Type

string

application/json

Request Body

NameTypeDescription

product_id*

string

Product ID

sender.userid*

string

Roblox or Discord User ID

sender.userid_type*

string

"roblox" or "discord"

recipient.userid*

string

Roblox or Discord User ID

recipient.userid_type*

string

"roblox" or "discord"

If everything was able to process properly:

{ "status": "200", "message": "OK", "data": { "sender": string, "recipient": string, "product_id": string, "state": "License has been transferred" } }

Last updated