Loading...
Overview

Account

Represents an account in the digital customer platform, used to organize customers, subaccounts, users, assets, and related configuration.

Attributes

These are all attributes that can be read and updated through the API

Name Description Permissions
id Unique identifier for the account record. READ ONLY
name Display name of the account. READ AND UPDATE
description Human-readable details about the account. READ AND UPDATE

Get all Accounts

GEThttps://digital.fmw.co.at/connect/v1/resources/accounts

Returns all Accounts that are accessible with the active access token.


Get Account by ID

GEThttps://digital.fmw.co.at/connect/v1/resources/account/[ID]

Returns a specific Account by ID.


Relations

It is possible to get related objects from Accounts.

GEThttps://digital.fmw.co.at/connect/v1/resources/account/[ID]/[RELATION]

This table shows all available resources that can be queried

Relation Objecttype Relationtype
users User Not available Show details
assets Asset 1:many Show details
metadatas Metadata many:many Show details
gateways Gateway 1:many Show details

Update Account

POSThttps://digital.fmw.co.at/connect/v1/resources/account/[ID]

Update fields of Account by ID. The fields must be sent as x-www-form-urlencoded parameter.


Create Account

PUThttps://digital.fmw.co.at/connect/v1/resources/account

Create a new Account.


Delete Account

DELETEhttps://digital.fmw.co.at/connect/v1/resources/account/[ID]

Delete the resource Account by ID.

Top