mirror of
https://github.com/retailcrm/api-client-dotnet.git
synced 2024-11-22 21:06:02 +03:00
72cac6d6f0
* Multiversion sdk * Remove redundant code * More test coverage;
109 lines
3.1 KiB
C#
109 lines
3.1 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Web.Script.Serialization;
|
|
|
|
namespace Retailcrm.Versions.V5
|
|
{
|
|
public partial class Client
|
|
{
|
|
/// <summary>
|
|
/// Create a task
|
|
/// </summary>
|
|
/// <param name="task"></param>
|
|
/// <param name="site"></param>
|
|
/// <returns></returns>
|
|
public Response TasksCreate(Dictionary<string, object> task, string site = "")
|
|
{
|
|
if (task.Count < 1)
|
|
{
|
|
throw new ArgumentException("Parameter `task` must contains a data");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
"/tasks/create",
|
|
Request.MethodPost,
|
|
FillSite(
|
|
site,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "task", new JavaScriptSerializer().Serialize(task) }
|
|
}
|
|
)
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Update a task
|
|
/// </summary>
|
|
/// <param name="task"></param>
|
|
/// <param name="site"></param>
|
|
/// <returns></returns>
|
|
public Response TasksUpdate(Dictionary<string, object> task, string site = "")
|
|
{
|
|
if (task.Count < 1)
|
|
{
|
|
throw new ArgumentException("Parameter `task` must contains a data");
|
|
}
|
|
|
|
if (!task.ContainsKey("id"))
|
|
{
|
|
throw new ArgumentException("Parameter `task` must contains an id");
|
|
}
|
|
|
|
return Request.MakeRequest(
|
|
$"/tasks/{task["id"].ToString()}/edit",
|
|
Request.MethodPost,
|
|
FillSite(
|
|
site,
|
|
new Dictionary<string, object>
|
|
{
|
|
{ "task", new JavaScriptSerializer().Serialize(task) }
|
|
}
|
|
)
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get task
|
|
/// </summary>
|
|
/// <param name="id"></param>
|
|
/// <returns></returns>
|
|
public Response TasksGet(string id)
|
|
{
|
|
return Request.MakeRequest(
|
|
$"/tasks/{id}",
|
|
Request.MethodGet
|
|
);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Get tasks list
|
|
/// </summary>
|
|
/// <param name="filter"></param>
|
|
/// <param name="page"></param>
|
|
/// <param name="limit"></param>
|
|
/// <returns></returns>
|
|
public Response TasksList(Dictionary<string, object> filter = null, int page = 1, int limit = 20)
|
|
{
|
|
Dictionary<string, object> parameters = new Dictionary<string, object>();
|
|
|
|
if (filter != null && filter.Count > 0)
|
|
{
|
|
parameters.Add("filter", filter);
|
|
}
|
|
|
|
if (page > 0)
|
|
{
|
|
parameters.Add("page", page);
|
|
}
|
|
|
|
if (limit > 0)
|
|
{
|
|
parameters.Add("limit", limit);
|
|
}
|
|
|
|
return Request.MakeRequest("/tasks", Request.MethodGet, parameters);
|
|
}
|
|
}
|
|
}
|