Skip to main content

Search tasks

GET 

https://api.mobility-work.com/partners/v1/tasks/search

StarterPremiumUltimate
✔️✔️

Search for your tasks using several criteria.

⚠️ Query parameters must be encoded

Request

Responses

Tasks search

Authorization: Api-Key

name: Api-Keytype: apiKeyin: headerdescription: Every requests to the API **must be** authenticated.
You must provide the API Key to authenticate as an HTTP header `Api-Key`.

For instance:

```curl
POST /partners/v1/tasks
Api-Key: 913a8f7cef6ff084f1635511b9c7d07c3bab2816
[...]
```

Each API Key is associated to a single network providing an access to all features available on the network
subscription plan.

To get an API Key, send an email to [sales@mobility-work.com](mailto:sales@mobility-work.com) or contact your CSM.
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://api.mobility-work.com/partners/v1/tasks/search");
request.Headers.Add("Accept", "application/json");
request.Headers.Add("Api-Key", "<Api-Key>");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://api.mobility-work.com
Auth
Parameters
— query
— query
— query
— query
— query
— query
— query
— query
— query
— query
— query
— query
— query
— query
ResponseClear

Click the Send API Request button above and see the response here!