sfgboxapi

<back to all web services

UsersRolesAdd

Requires Authentication
The following routes are available for this service:
POST/users_roles
import java.math.*
import java.util.*
import net.servicestack.client.*


@DataContract
open class UsersRolesAdd
{
    @DataMember(Order=2)
    @Validate(Validator="NotNull")
    var appUserId:Long? = null

    @DataMember(Order=3)
    @Validate(Validator="NotNull")
    var rolesId:Long? = null
}

open class UsersRolesAddResponse
{
    @DataMember(Order=2)
    var appUserId:Long? = null

    @DataMember(Order=3)
    var rolesId:Long? = null

    @DataMember(Order=5)
    var responseStatus:ResponseStatus? = null
}

Kotlin UsersRolesAdd DTOs

To override the Content-type in your clients, use the HTTP Accept Header, append the .csv suffix or ?format=csv

HTTP + CSV

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

POST /users_roles HTTP/1.1 
Host: sfgboxapi.dev.scadsoftware.com 
Accept: text/csv
Content-Type: text/csv
Content-Length: length

{"appUserId":0,"rolesId":0}
HTTP/1.1 200 OK
Content-Type: text/csv
Content-Length: length

{"appUserId":0,"rolesId":0,"responseStatus":{"errorCode":"String","message":"String","stackTrace":"String","errors":[{"errorCode":"String","fieldName":"String","message":"String","meta":{"String":"String"}}],"meta":{"String":"String"}}}