Vault
  • Getting Started
  • Setting up Roblox Hub
  • Import from Parcel
  • API
  • Custom Hubs
  • Discord Bot Invite
Powered by GitBook
On this page

API

Get started with our REST API and all the documentation for it

PreviousImport from ParcelNextCustom Hubs

Last updated 3 months ago

  • POSTAdd a new license for a user
  • DELETERemove a users license
  • POSTCheck if a user has a valid license

Add a new license for a user

post
Authorizations
Body
robloxIDstringRequired
productUUIDstringRequired
Responses
200
License added successfully
400
Invalid request
401
Unauthorized
post
POST /api/developers/license/add HTTP/1.1
Host: api.vaultroblox.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "robloxID": "text",
  "productUUID": "text"
}

No content

Remove a users license

delete
Authorizations
Body
robloxIDstringRequired
productUUIDstringRequired
Responses
200
License deleted successfully
400
Invalid request
401
Unauthorized
delete
DELETE /api/developers/license/delete HTTP/1.1
Host: api.vaultroblox.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "robloxID": "text",
  "productUUID": "text"
}

No content

Check if a user has a valid license

post
Authorizations
Body
robloxIDstringRequired
productUUIDstringRequired
Responses
200
License check completed
application/json
400
Invalid request
401
Unauthorized
post
POST /api/developers/license/check HTTP/1.1
Host: api.vaultroblox.com
Authorization: Bearer YOUR_SECRET_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 40

{
  "robloxID": "text",
  "productUUID": "text"
}
{
  "hasLicense": true
}