Hi Tim,
you get a template for logon with
GET http://servername:6405/biprws/logon/long Header: Accept: application/json
will return
{
userName: ""
password: ""
auth: "secEnterprise"
}
then just fill in the information, put it into the request body and do a
POST http://servername:6405/biprws/logon/long Header: Accept: application/json
With that you return a logon token that you need to include in all further requests in the header.
Hope that helps
Jan