| Requires any of the roles: | Admin, TeamAdmin | Required permission: | Tickets.Add |
| POST | /SharedTicketLink/Resend |
|---|
import Foundation
import ServiceStack
public class SharedTicketLinkResendRequest : Codable
{
public var token:String?
public var id:Int?
required public init(){}
}
public class SharedTicketLinkResendResult : Codable
{
public var success:Bool?
public var token:String?
public var url:String?
public var validTo:Date?
public var status:String?
public var recipientEmail:String?
public var recipientPhone:String?
public var statusCode:Int?
public var message:String?
required public init(){}
}
Swift SharedTicketLinkResendRequest DTOs
To override the Content-type in your clients, use the HTTP Accept Header, append the .json suffix or ?format=json
To embed the response in a jsonp callback, append ?callback=myCallback
The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.
POST /SharedTicketLink/Resend HTTP/1.1
Host: stubbur-app.azurewebsites.net
Accept: application/json
Content-Type: application/json
Content-Length: length
{"token":"String","id":0}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length
{"success":false,"token":"String","url":"String","validTo":"0001-01-01T00:00:00.0000000","status":"String","recipientEmail":"String","recipientPhone":"String","statusCode":0,"message":"String"}