All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| AddUserNote | POST /api/v1.0/users/{userId}/AddUserNote | |
| AddUserToRole | POST /api/v1.0/users/{userId}/AddUserToRole/{roleName} | |
| AnonymizeUser | POST /api/v1.0/users/{userId}/AnonymizeUser | |
| BlockUserPhoneNumber | POST /api/v1.0/users/{userId}/BlockUserPhoneNumber | |
| GetPreviousOrderCountForStore | GET /api/v1.0/users/{userId}/previousordercount/{storeId} | |
| GetRestaurantUserAccounts | GET /api/v1.0/users/{userId}/RestaurantUserAccounts | |
| GetRestaurantUserStores | GET /api/v1.0/users/{userId}/RestaurantUserStores | |
| GetRoles | GET /api/v1.0/users/roles | |
| GetRolesAndUnassignedRoles | GET /api/v1.0/users/{userId}/roles | |
| GetUserById | GET /api/v1.0/users/{userId} | |
| GetUserNotes | GET /api/v1.0/users/{userId}/UserNotes | |
| MarkUserAsFraudulent | POST /api/v1.0/users/{userId}/MarkUserAsFraudulent | |
| MarkUserAsSuspicious | POST /api/v1.0/users/{userId}/MarkUserAsSuspicious | |
| RemoveFlipdishAccountIdForUser | POST /api/v1.0/users/{userId}/RemoveFlipdishAccountId/{accountId} | |
| RemoveUserFromRole | POST /api/v1.0/users/{userId}/RemoveUserFromRole/{roleName} | |
| ResetMfa | POST /api/v1.0/users/{userId}/ResetMfa | |
| SearchFlipdishAccounts | GET /api/v1.0/users/searchFlipdishAccounts | |
| SearchUsers | GET /api/v1.0/users/search | |
| SetCustomerName | POST /api/v1.0/users/{userId}/SetCustomerName | |
| SetFlipdishAccountIdForUser | POST /api/v1.0/users/{userId}/SetFlipdishAccountId/{accountId} | |
| SetUserLanguage | POST /api/v1.0/users/{userId}/SetLanguage/{languageId} | |
| UnblockUserPhoneNumber | POST /api/v1.0/users/{userId}/UnblockUserPhoneNumber |
RestApiDefaultResponse AddUserNote (int? userId, string note)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AddUserNoteExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var note = note_example; // string |
try
{
RestApiDefaultResponse result = apiInstance.AddUserNote(userId, note);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.AddUserNote: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| note | string |
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiResultUserRole AddUserToRole (int? userId, string roleName)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AddUserToRoleExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var roleName = roleName_example; // string |
try
{
RestApiResultUserRole result = apiInstance.AddUserToRole(userId, roleName);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.AddUserToRole: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| roleName | string |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse AnonymizeUser (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class AnonymizeUserExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.AnonymizeUser(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.AnonymizeUser: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse BlockUserPhoneNumber (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class BlockUserPhoneNumberExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.BlockUserPhoneNumber(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.BlockUserPhoneNumber: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiStringResult GetPreviousOrderCountForStore (int? userId, int? storeId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetPreviousOrderCountForStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var storeId = 56; // int? |
try
{
RestApiStringResult result = apiInstance.GetPreviousOrderCountForStore(userId, storeId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetPreviousOrderCountForStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| storeId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiArrayResultUserFlipdishAccount GetRestaurantUserAccounts (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetRestaurantUserAccountsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiArrayResultUserFlipdishAccount result = apiInstance.GetRestaurantUserAccounts(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetRestaurantUserAccounts: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
RestApiArrayResultUserFlipdishAccount
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiArrayResultUserStoreInfo GetRestaurantUserStores (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetRestaurantUserStoresExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiArrayResultUserStoreInfo result = apiInstance.GetRestaurantUserStores(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetRestaurantUserStores: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
RestApiArrayResultUserStoreInfo
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiStringArrayResult GetRoles ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetRolesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
try
{
RestApiStringArrayResult result = apiInstance.GetRoles();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetRoles: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiResultUserRole GetRolesAndUnassignedRoles (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetRolesAndUnassignedRolesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiResultUserRole result = apiInstance.GetRolesAndUnassignedRoles(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetRolesAndUnassignedRoles: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiResultUserInfo GetUserById (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetUserByIdExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiResultUserInfo result = apiInstance.GetUserById(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetUserById: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiArrayResultUserNote GetUserNotes (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class GetUserNotesExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiArrayResultUserNote result = apiInstance.GetUserNotes(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.GetUserNotes: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse MarkUserAsFraudulent (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class MarkUserAsFraudulentExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.MarkUserAsFraudulent(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.MarkUserAsFraudulent: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse MarkUserAsSuspicious (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class MarkUserAsSuspiciousExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.MarkUserAsSuspicious(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.MarkUserAsSuspicious: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse RemoveFlipdishAccountIdForUser (int? userId, int? accountId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class RemoveFlipdishAccountIdForUserExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var accountId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.RemoveFlipdishAccountIdForUser(userId, accountId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.RemoveFlipdishAccountIdForUser: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| accountId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiResultUserRole RemoveUserFromRole (int? userId, string roleName)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class RemoveUserFromRoleExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var roleName = roleName_example; // string |
try
{
RestApiResultUserRole result = apiInstance.RemoveUserFromRole(userId, roleName);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.RemoveUserFromRole: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| roleName | string |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse ResetMfa (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class ResetMfaExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.ResetMfa(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.ResetMfa: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiArrayResultFlipdishAccountName SearchFlipdishAccounts (string searchPattern)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SearchFlipdishAccountsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var searchPattern = searchPattern_example; // string |
try
{
RestApiArrayResultFlipdishAccountName result = apiInstance.SearchFlipdishAccounts(searchPattern);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.SearchFlipdishAccounts: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| searchPattern | string |
RestApiArrayResultFlipdishAccountName
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiPaginationResultUserSearch SearchUsers (string searchQuery, bool? hasUserLoggedIn = null, string userDiscriminator = null, string searchIn = null, int? pageIndex = null, int? pageSize = null)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SearchUsersExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var searchQuery = searchQuery_example; // string |
var hasUserLoggedIn = true; // bool? | (optional)
var userDiscriminator = userDiscriminator_example; // string | (optional)
var searchIn = searchIn_example; // string | (optional)
var pageIndex = 56; // int? | (optional)
var pageSize = 56; // int? | (optional)
try
{
RestApiPaginationResultUserSearch result = apiInstance.SearchUsers(searchQuery, hasUserLoggedIn, userDiscriminator, searchIn, pageIndex, pageSize);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.SearchUsers: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| searchQuery | string | ||
| hasUserLoggedIn | bool? | [optional] | |
| userDiscriminator | string | [optional] | |
| searchIn | string | [optional] | |
| pageIndex | int? | [optional] | |
| pageSize | int? | [optional] |
RestApiPaginationResultUserSearch
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse SetCustomerName (int? userId, string customerName)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetCustomerNameExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var customerName = customerName_example; // string |
try
{
RestApiDefaultResponse result = apiInstance.SetCustomerName(userId, customerName);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.SetCustomerName: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| customerName | string |
- Content-Type: application/json, text/json, application/xml, text/xml, application/x-www-form-urlencoded
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse SetFlipdishAccountIdForUser (int? userId, int? accountId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetFlipdishAccountIdForUserExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var accountId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.SetFlipdishAccountIdForUser(userId, accountId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.SetFlipdishAccountIdForUser: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| accountId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse SetUserLanguage (int? userId, string languageId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class SetUserLanguageExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
var languageId = languageId_example; // string |
try
{
RestApiDefaultResponse result = apiInstance.SetUserLanguage(userId, languageId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.SetUserLanguage: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? | ||
| languageId | string |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]
RestApiDefaultResponse UnblockUserPhoneNumber (int? userId)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class UnblockUserPhoneNumberExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new UsersApi();
var userId = 56; // int? |
try
{
RestApiDefaultResponse result = apiInstance.UnblockUserPhoneNumber(userId);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling UsersApi.UnblockUserPhoneNumber: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| userId | int? |
- Content-Type: Not defined
- Accept: application/json, text/json, application/xml, text/xml
[Back to top] [Back to API list] [Back to Model list] [Back to README]