All URIs are relative to /
Method | HTTP request | Description |
---|---|---|
create_app_token1 | POST users-web/api/v3/apps/{appId}/tokens | Create new app token |
delete_app_token1 | DELETE users-web/api/v3/apps/{appId}/tokens/{tokenId} | Delete app token |
get_app_tokens1 | GET users-web/api/v3/apps/{appId}/tokens | Get app available tokens |
regenerate_app_token | POST users-web/api/v3/apps/{appId}/tokens/{tokenId}/regenerate | Regenerate app token) |
update_app_token1 | PUT users-web/api/v3/apps/{appId}/tokens/{tokenId} | Update app token (enable/disable or name) |
TokenResponse create_app_token1(ctx, body, app_id) Create new app token
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context containing the authentication | nil if no authentication |
body | CreateTokenDto | dto | |
app_id | i64 | appId |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
GenericMapBasedApiResponse delete_app_token1(ctx, app_id, token_id) Delete app token
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context containing the authentication | nil if no authentication |
app_id | i64 | appId | |
token_id | i64 | tokenId |
[GenericMapBasedApiResponse](Generic Map Based Api Response.md)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TokensResponse get_app_tokens1(ctx, app_id) Get app available tokens
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context containing the authentication | nil if no authentication |
app_id | i64 | appId |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TokenResponse regenerate_app_token(ctx, app_id, token_id) Regenerate app token)
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context containing the authentication | nil if no authentication |
app_id | i64 | appId | |
token_id | i64 | tokenId |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
TokenResponse update_app_token1(ctx, body, app_id, token_id) Update app token (enable/disable or name)
Name | Type | Description | Notes |
---|---|---|---|
ctx | context.Context | context containing the authentication | nil if no authentication |
body | UpdateTokenDto | dto | |
app_id | i64 | appId | |
token_id | i64 | tokenId |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]