All URIs are relative to https://api.egoiapp.com
Method | HTTP request | Description |
---|---|---|
CreateList | POST /lists | Create new list |
DeleteList | DELETE /lists/{list_id} | Remove list |
GetAllLists | GET /lists | Get all lists |
UpdateList | PATCH /lists/{list_id} | Update a specific list |
List CreateList (PostRequestList postRequestList)
Create new list
Create a new list
using System.Collections.Generic;
using System.Diagnostics;
using org.egoi.client.api.Api;
using org.egoi.client.api.Client;
using org.egoi.client.api.Model;
namespace Example
{
public class CreateListExample
{
public static void Main()
{
Configuration.Default.BasePath = "https://api.egoiapp.com";
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");
var apiInstance = new ListsApi(Configuration.Default);
var postRequestList = new PostRequestList(); // PostRequestList | Parameters for the List
try
{
// Create new list
List result = apiInstance.CreateList(postRequestList);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ListsApi.CreateList: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
postRequestList | PostRequestList | Parameters for the List |
List
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
201 | Created | - |
400 | Bad Request | - |
401 | Unauthorized | - |
403 | Forbidden | - |
408 | Request Timeout | - |
409 | Conflict | - |
422 | Unprocessable Entity | - |
429 | Too Many Requests | - |
500 | Internal Server Error | - |
503 | Service Unavailable | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
void DeleteList (int listId)
Remove list
Remove list information given its ID
using System.Collections.Generic;
using System.Diagnostics;
using org.egoi.client.api.Api;
using org.egoi.client.api.Client;
using org.egoi.client.api.Model;
namespace Example
{
public class DeleteListExample
{
public static void Main()
{
Configuration.Default.BasePath = "https://api.egoiapp.com";
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");
var apiInstance = new ListsApi(Configuration.Default);
var listId = 56; // int | ID of the List
try
{
// Remove list
apiInstance.DeleteList(listId);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ListsApi.DeleteList: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
listId | int | ID of the List |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
204 | No Content | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | Not Found | - |
408 | Request Timeout | - |
409 | Conflict | - |
429 | Too Many Requests | - |
500 | Internal Server Error | - |
503 | Service Unavailable | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ListCollection GetAllLists (int? offset = null, int? limit = null, string order = null, string orderBy = null, string internalName = null, string publicName = null, DateTime? createdMin = null, DateTime? createdMax = null, DateTime? updatedMin = null, DateTime? updatedMax = null)
Get all lists
Returns all lists
using System.Collections.Generic;
using System.Diagnostics;
using org.egoi.client.api.Api;
using org.egoi.client.api.Client;
using org.egoi.client.api.Model;
namespace Example
{
public class GetAllListsExample
{
public static void Main()
{
Configuration.Default.BasePath = "https://api.egoiapp.com";
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");
var apiInstance = new ListsApi(Configuration.Default);
var offset = 56; // int? | Element offset (starting at zero for the first element) (optional)
var limit = 56; // int? | Number of items to return (optional) (default to 10)
var order = order_example; // string | Type of order (optional) (default to desc)
var orderBy = orderBy_example; // string | Reference attribute to order lists (optional) (default to list_id)
var internalName = internalName_example; // string | Internal name of the list (optional)
var publicName = publicName_example; // string | Public name of the list (optional)
var createdMin = 2013-10-20T19:20:30+01:00; // DateTime? | Created initial date (optional)
var createdMax = 2013-10-20T19:20:30+01:00; // DateTime? | Created finish (optional)
var updatedMin = 2013-10-20T19:20:30+01:00; // DateTime? | Updated initial (optional)
var updatedMax = 2013-10-20T19:20:30+01:00; // DateTime? | Updated finish (optional)
try
{
// Get all lists
ListCollection result = apiInstance.GetAllLists(offset, limit, order, orderBy, internalName, publicName, createdMin, createdMax, updatedMin, updatedMax);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ListsApi.GetAllLists: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
offset | int? | Element offset (starting at zero for the first element) | [optional] |
limit | int? | Number of items to return | [optional] [default to 10] |
order | string | Type of order | [optional] [default to desc] |
orderBy | string | Reference attribute to order lists | [optional] [default to list_id] |
internalName | string | Internal name of the list | [optional] |
publicName | string | Public name of the list | [optional] |
createdMin | DateTime? | Created initial date | [optional] |
createdMax | DateTime? | Created finish | [optional] |
updatedMin | DateTime? | Updated initial | [optional] |
updatedMax | DateTime? | Updated finish | [optional] |
- Content-Type: Not defined
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
401 | Unauthorized | - |
403 | Forbidden | - |
408 | Request Timeout | - |
422 | Unprocessable Entity | - |
429 | Too Many Requests | - |
500 | Internal Server Error | - |
503 | Service Unavailable | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]
List UpdateList (int listId, PatchRequestList patchRequestList)
Update a specific list
Update a list
using System.Collections.Generic;
using System.Diagnostics;
using org.egoi.client.api.Api;
using org.egoi.client.api.Client;
using org.egoi.client.api.Model;
namespace Example
{
public class UpdateListExample
{
public static void Main()
{
Configuration.Default.BasePath = "https://api.egoiapp.com";
// Configure API key authorization: Apikey
Configuration.Default.AddApiKey("Apikey", "YOUR_API_KEY");
// Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
// Configuration.Default.AddApiKeyPrefix("Apikey", "Bearer");
var apiInstance = new ListsApi(Configuration.Default);
var listId = 56; // int | ID of the List
var patchRequestList = new PatchRequestList(); // PatchRequestList | Parameters for the List
try
{
// Update a specific list
List result = apiInstance.UpdateList(listId, patchRequestList);
Debug.WriteLine(result);
}
catch (ApiException e)
{
Debug.Print("Exception when calling ListsApi.UpdateList: " + e.Message );
Debug.Print("Status Code: "+ e.ErrorCode);
Debug.Print(e.StackTrace);
}
}
}
}
Name | Type | Description | Notes |
---|---|---|---|
listId | int | ID of the List | |
patchRequestList | PatchRequestList | Parameters for the List |
List
- Content-Type: application/json
- Accept: application/json
Status code | Description | Response headers |
---|---|---|
200 | OK | - |
400 | Bad Request | - |
401 | Unauthorized | - |
403 | Forbidden | - |
404 | Not Found | - |
408 | Request Timeout | - |
422 | Unprocessable Entity | - |
429 | Too Many Requests | - |
500 | Internal Server Error | - |
503 | Service Unavailable | - |
[Back to top] [Back to API list] [Back to Model list] [Back to README]