All URIs are relative to https://api.flipdish.co
| Method | HTTP request | Description |
|---|---|---|
| DriversAddDriverNotificationToken | POST /api/v1.0/drivers/token | |
| DriversDeleteDriverProfileImage | DELETE /api/v1.0/drivers/profile/image | |
| DriversDriverLogin | POST /api/v1.0/drivers/login | |
| DriversDriverRequestLoginCodeSms | POST /api/v1.0/drivers/pin | |
| DriversGetDriverProfile | GET /api/v1.0/drivers/profile | |
| DriversGetStoresForDriver | GET /api/v1.0/drivers/assignedstores | |
| DriversRemoveDriverNotificationToken | DELETE /api/v1.0/drivers/token | |
| DriversSetDriverPresenceForStore | POST /api/v1.0/drivers/stores/{storeId}/presence/{presence} | |
| DriversSetDriverProfileImage | POST /api/v1.0/drivers/profile/image | |
| DriversUpdateDeliveryTrackingStatus | POST /api/v1.0/orders/{orderId}/tracking/{deliveryTrackingStatus} | |
| DriversUpdateDriverProfile | POST /api/v1.0/drivers/profile |
Object DriversAddDriverNotificationToken (UpdateDriverNotificationToken updateDriverToken)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversAddDriverNotificationTokenExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var updateDriverToken = new UpdateDriverNotificationToken(); // UpdateDriverNotificationToken |
try
{
Object result = apiInstance.DriversAddDriverNotificationToken(updateDriverToken);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversAddDriverNotificationToken: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| updateDriverToken | UpdateDriverNotificationToken |
Object
- 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]
Object DriversDeleteDriverProfileImage ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversDeleteDriverProfileImageExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
try
{
Object result = apiInstance.DriversDeleteDriverProfileImage();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversDeleteDriverProfileImage: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
Object
- 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]
Object DriversDriverLogin (DriverLoginModel driverLoginModel)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversDriverLoginExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var driverLoginModel = new DriverLoginModel(); // DriverLoginModel |
try
{
Object result = apiInstance.DriversDriverLogin(driverLoginModel);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversDriverLogin: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| driverLoginModel | DriverLoginModel |
Object
- 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]
Object DriversDriverRequestLoginCodeSms (DriverRequestLoginPinModel driverRequestLoginPinModel)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversDriverRequestLoginCodeSmsExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var driverRequestLoginPinModel = new DriverRequestLoginPinModel(); // DriverRequestLoginPinModel |
try
{
Object result = apiInstance.DriversDriverRequestLoginCodeSms(driverRequestLoginPinModel);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversDriverRequestLoginCodeSms: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| driverRequestLoginPinModel | DriverRequestLoginPinModel |
Object
- 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]
Object DriversGetDriverProfile ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversGetDriverProfileExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
try
{
Object result = apiInstance.DriversGetDriverProfile();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversGetDriverProfile: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
Object
- 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]
Object DriversGetStoresForDriver ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversGetStoresForDriverExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
try
{
Object result = apiInstance.DriversGetStoresForDriver();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversGetStoresForDriver: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
Object
- 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]
Object DriversRemoveDriverNotificationToken (UpdateDriverNotificationToken removeDriverToken)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversRemoveDriverNotificationTokenExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var removeDriverToken = new UpdateDriverNotificationToken(); // UpdateDriverNotificationToken |
try
{
Object result = apiInstance.DriversRemoveDriverNotificationToken(removeDriverToken);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversRemoveDriverNotificationToken: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| removeDriverToken | UpdateDriverNotificationToken |
Object
- 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]
Object DriversSetDriverPresenceForStore (int? storeId, string presence)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversSetDriverPresenceForStoreExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var storeId = 56; // int? |
var presence = presence_example; // string |
try
{
Object result = apiInstance.DriversSetDriverPresenceForStore(storeId, presence);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversSetDriverPresenceForStore: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| storeId | int? | ||
| presence | string |
Object
- 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]
Object DriversSetDriverProfileImage ()
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversSetDriverProfileImageExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
try
{
Object result = apiInstance.DriversSetDriverProfileImage();
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversSetDriverProfileImage: " + e.Message );
}
}
}
}This endpoint does not need any parameter.
Object
- 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]
Object DriversUpdateDeliveryTrackingStatus (int? orderId, string deliveryTrackingStatus)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversUpdateDeliveryTrackingStatusExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var orderId = 56; // int? |
var deliveryTrackingStatus = deliveryTrackingStatus_example; // string |
try
{
Object result = apiInstance.DriversUpdateDeliveryTrackingStatus(orderId, deliveryTrackingStatus);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversUpdateDeliveryTrackingStatus: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| orderId | int? | ||
| deliveryTrackingStatus | string |
Object
- 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]
Object DriversUpdateDriverProfile (UpdateDriverProfileModel updateDriverProfile)
using System;
using System.Diagnostics;
using Flipdish.Api;
using Flipdish.Client;
using Flipdish.Model;
namespace Example
{
public class DriversUpdateDriverProfileExample
{
public void main()
{
// Configure OAuth2 access token for authorization: oauth2
Configuration.Default.AccessToken = "YOUR_ACCESS_TOKEN";
var apiInstance = new DriversApi();
var updateDriverProfile = new UpdateDriverProfileModel(); // UpdateDriverProfileModel |
try
{
Object result = apiInstance.DriversUpdateDriverProfile(updateDriverProfile);
Debug.WriteLine(result);
}
catch (Exception e)
{
Debug.Print("Exception when calling DriversApi.DriversUpdateDriverProfile: " + e.Message );
}
}
}
}| Name | Type | Description | Notes |
|---|---|---|---|
| updateDriverProfile | UpdateDriverProfileModel |
Object
- 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]