Trendsic Platform Service

<back to all web services

StaffApplyRequest

The following routes are available for this service:
POST,OPTIONS/v1/staff/apply/{PostingUID}
import java.math.*
import java.util.*
import java.io.InputStream
import net.servicestack.client.*


open class StaffApplyRequest
{
    open var PostingUID:String? = null
    open var Name:String? = null
    open var Email:String? = null
    open var Phone:String? = null
    open var YearsExperience:Int? = null
    open var AskRate:BigDecimal? = null
    open var Skills:String? = null
    open var BaseText:String? = null
    open var ResumeText:String? = null
}

open class PmActionResponse
{
    open var Success:Boolean? = null
    open var Message:String? = null
    open var NewId:Int? = null
    open var ResponseStatus:ResponseStatus? = null
}

Kotlin StaffApplyRequest 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

HTTP + JSON

The following are sample HTTP requests and responses. The placeholders shown need to be replaced with actual values.

POST /v1/staff/apply/{PostingUID} HTTP/1.1 
Host: api.dev.dynamics.trendsic.com 
Accept: application/json
Content-Type: application/json
Content-Length: length

{"PostingUID":"String","Name":"String","Email":"String","Phone":"String","YearsExperience":0,"AskRate":0,"Skills":"String","BaseText":"String","ResumeText":"String"}
HTTP/1.1 200 OK
Content-Type: application/json
Content-Length: length

{"Success":false,"Message":"String","NewId":0,"ResponseStatus":{"ErrorCode":"String","Message":"String","StackTrace":"String","Errors":[{"ErrorCode":"String","FieldName":"String","Message":"String","Meta":{"String":"String"}}],"Meta":{"String":"String"}}}