| All Verbs | /MissionCreate/{Name} |
|---|
using System;
using System.IO;
using System.Collections;
using System.Collections.Generic;
using System.Runtime.Serialization;
using ServiceStack;
using ServiceStack.DataAnnotations;
using GoToLightAPI;
namespace GoToLightAPI
{
public partial class MissionCreate
{
///<summary>
///Mission name
///</summary>
[ApiMember(Description="Mission name", IsRequired=true)]
public virtual string Name { get; set; }
///<summary>
///Mission info
///</summary>
[ApiMember(Description="Mission info")]
public virtual string Info { get; set; }
///<summary>
///Delete automatically when completed
///</summary>
[ApiMember(Description="Delete automatically when completed")]
public virtual bool? DeleteWhenCompleted { get; set; }
///<summary>
///Mission owner
///</summary>
[ApiMember(Description="Mission owner")]
public virtual string Owner { get; set; }
///<summary>
///Mission finder key
///</summary>
[ApiMember(Description="Mission finder key")]
public virtual string FinderKey { get; set; }
///<summary>
///Defines the mission type. Value can be: E = Entrée/Réapro/Restock, S = Sortie/Picking/Prépa commande or, I = Inventaire/Inventory
///</summary>
[ApiMember(Description="Defines the mission type. Value can be: E = Entrée/Réapro/Restock, S = Sortie/Picking/Prépa commande or, I = Inventaire/Inventory")]
public virtual string Type { get; set; }
///<summary>
///Mission trolley
///</summary>
[ApiMember(Description="Mission trolley")]
public virtual string Trolley { get; set; }
///<summary>
///Reference of the target printer
///</summary>
[ApiMember(Description="Reference of the target printer")]
public virtual string Printer { get; set; }
///<summary>
///Defines if the mission has been cancelled
///</summary>
[ApiMember(Description="Defines if the mission has been cancelled")]
public virtual bool? Cancelled { get; set; }
///<summary>
///Defines if the mission has been blocked
///</summary>
[ApiMember(Description="Defines if the mission has been blocked")]
public virtual bool? Blocked { get; set; }
///<summary>
///Carrier
///</summary>
[ApiMember(Description="Carrier")]
public virtual string Carrier { get; set; }
///<summary>
///BatchId
///</summary>
[ApiMember(Description="BatchId")]
public virtual string BatchId { get; set; }
}
}
To override the Content-type in your clients, use the HTTP Accept Header, append the .xml suffix or ?format=xml
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /MissionCreate/{Name} HTTP/1.1
Host: clouddemo.pickeos.com
Accept: application/xml
Content-Type: application/xml
Content-Length: length
<MissionCreate xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/GoToLightAPI">
<BatchId>String</BatchId>
<Blocked>false</Blocked>
<Cancelled>false</Cancelled>
<Carrier>String</Carrier>
<DeleteWhenCompleted>false</DeleteWhenCompleted>
<FinderKey>String</FinderKey>
<Info>String</Info>
<Name>String</Name>
<Owner>String</Owner>
<Printer>String</Printer>
<Trolley>String</Trolley>
<Type>String</Type>
</MissionCreate>