VPP Token Management

APIs to create, access, and delete VPP tokens. Learn more about VPP tokens.

Get all VPP tokens for the tenant

Returns all the VPP tokens for the tenant

SecurityapiKey08
Responses
200

VPP tokens for the Tenant

401

Unauthorized

500

Internal Server Error

get/tenant/v0/vpptokens/
Request samples
Response samples
application/json
{
  • "code": 200,
  • "message": "string",
  • "content": {
    }
}

Store a VPP token

Uploads a VPP token

SecurityapiKey08
Request
Request Body schema: multipart/form-data
filename
string <binary>
Responses
201

Created

400

Bad Request

401

Unauthorized

500

Internal Server Error

post/tenant/v0/vpptokens/
Request samples
Response samples
application/json
{
  • "code": 201,
  • "message": "string",
  • "content": {
    }
}

Delete VPP Token

API to delete vpp token for a tenant

SecurityapiKey08
Request
path Parameters
id
required
integer
Responses
204

Success

401

Unauthorized

404

Resource Not Found

500

Internal Server Error

delete/tenant/v0/vpptokens/{id}
Request samples
Response samples
application/json
{
  • "code": 204,
  • "message": "string",
  • "content": { }
}