Search tasks
GEThttps://api.mobility-work.com/partners/v1/tasks/search
Starter | Premium | Ultimate |
---|---|---|
❌ | ✔️ | ✔️ |
Search for your tasks using several criteria.
⚠️ Query parameters must be encoded
Request
Responses
- 200
- 401
- 403
Tasks search
Missing or invalid Api Key (e.g. revoked or non-existent)
Access denied
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.
- csharp
- curl
- dart
- go
- http
- java
- javascript
- kotlin
- c
- nodejs
- objective-c
- ocaml
- php
- powershell
- python
- r
- ruby
- rust
- shell
- swift
- HTTPCLIENT
- RESTSHARP
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());
ResponseClear