Account Management
Information about the authenticated user
Lists information about the authenticated user such as the user id. The endpoint MAY return the disk quota available to the user. The endpoint MAY also return links related to user management and the user profile, e.g. where payments are handled or the user profile could be edited. For back-ends that involve accounting, this service MAY also return the currently available money or credits in the currency the back-end is working with. This endpoint MAY be extended to fulfil the specification of the OpenID Connect UserInfo Endpoint.
get/me
Response
Information about the logged in user.
Example response
{
"user_id": "john_doe",
"default_plan": "free",
"storage": {
"free": 536870912,
"quota": 1073741824
},
"links": [
{
"href": "https://openeo.example/john_doe/payment/",
"rel": "payment"
},
{
"href": "https://openeo.example/john_doe/edit/",
"rel": "edit-form"
},
{
"href": "https://openeo.example/john_doe/",
"rel": "alternate",
"type": "text/html",
"title": "User profile"
},
{
"href": "https://openeo.example/john_doe.vcf",
"rel": "alternate",
"type": "text/vcard",
"title": "vCard of John Doe"
},
{
"href": "https://openeo.example/john_doe/invoices",
"rel": "related",
"type": "text/html",
"title": "Invoices"
}
]
}