Skip to main content

User Service

The user resource is a service to view and record your user information

User REST API

The User REST API is a private API allowing you to read and update your user information and is accessed through the following URL:

https://api.opendatadsl.com/api/user

The API consists of the following calls:

MethodPathExampleDescription
GETGet the build information for this service
GET{release}v1List all users for your tenant
GET{release}/mev1Get your user information
GET{release}/{email}v1Get another users information from your tenant
POST{release}v1Update your user information

Updating your user information

To update your company information you need to make a post request to the tenant service, you can use the template below to do this:

POST https://api.opendatadsl.com/api/user/v1
Authorization: Bearer {{token}}

{
"properties": {
"firstname": "Colin",
"lastname": "Hartley",
"nickname": "Ziggy",
"newsletter": "true"
}
}