- 22 Oct 2024
- 10 Minutes to read
- Print
- DarkLight
/Endpoint/rest/api/v1/Account/{Id}
- Updated on 22 Oct 2024
- 10 Minutes to read
- Print
- DarkLight
Use the AccountUpdateData
object resource to update Account
using Id, Username, ExternalId
field(s) value.
Provide the updated record information in your request data and use the PUT
method of the resource with a specific record ID to update that record.
The input parameter must be used in the AccountUpdateData
record structure inside the FieldType
parameter in the foreign key fields.
Foreign key fields are: TenantId, LanguageId, TimezoneId, DateFormatId
Update a record of Account
- If the
Id
field value is not matched, then a404
error is reported (Errors/Not Found
), and the error record is returned.. You cannot changeId
field value (primary key). - If the
Id
field value is matched multiple times, then a400
error is reported (Errors/Multible Rows
), and the error record is returned. - If the
Id, Username, ExternalId
field value is matched multiple times, then a400
error is reported (Errors/Multible Rows
), and the error record is returned.
The response body will contain the object of the updated record if the call is successful. Method returns an extended Account
structure. Here, all foreign key fields are abstract object structures, utilizing AbstractText
or AbstractLong
data types, offering a detailed view of the data and related entities.
oAuth autentication flow
The identifier of the Account record. The parameter is part of the url address and some special characters are forbidden.
You can extract any string to a base64 string. E.g email address name@domain.com value is base64|bmFtZUBkb21haW4uY29t
The name of the database field. If empty, the entity Id
field is used.
Example:
Username, ExternalId
Account information to update.
The input parameter must be used in the AccountUpdateData
record structure inside the FieldType
parameter in the foreign key fields.
The record of Account information.
The name of the account.
Person's first name.
Person's last name.
The phone number of account. The phone number is unique in the system.
The e-mail of account. The email is unique in the system.
The enum of Language.
The enum of Timezone.
The enum of DateFormat.
Username used to log in into the system. The username is unique in the system. The value must be unique in the system and you cannot add multiple values.
External Authentication identifier. Example Azure AD guid. The value must be unique in the system and you cannot add multiple values.
Defines if a person should get notifications via e-mail.
Defines if a contact should get notifications via SMS.
Defines if the account is active and can be used.
Updated Account
information.
The record of Account information.
The identifier of account
This structure represents an abstract object with a primary key of type Long. It is used to encapsulate detailed information about related entities.
The primary key of the record. It uniquely identifies each record within the dataset. This attribute is required and must be unique across all records.
An external identifier for the record, which can be used to link the record to external systems or datasets. This attribute is optional but should be unique if provided.
The name of the record. This attribute provides a human-readable identifier for the record, making it easier to recognize and differentiate records in lists or other displays. This attribute is optional.
The type of the record object. This attribute is used to classify the record into specific categories or types, helping to organize and manage different kinds of records. This attribute is optional.
The name of the account
Person's first name
Person's last name
The phone number of account. The phone number is unique in the system
Indicates whether the phone number has been verified.
The e-mail of account. The email is unique in the system
Indicates whether the email address has been verified.
This structure represents an abstract object with a primary key of type Text. It is used to encapsulate detailed information about related entities.
The primary key of the record. It uniquely identifies each record within the dataset. This attribute is required and must be unique across all records.
An external identifier for the record, which can be used to link the record to external systems or datasets. This attribute is optional but should be unique if provided.
The name of the record. This attribute provides a human-readable identifier for the record, making it easier to recognize and differentiate records in lists or other displays. This attribute is optional.
The type of the record object. This attribute is used to classify the record into specific categories or types, helping to organize and manage different kinds of records. This attribute is optional.
This structure represents an abstract object with a primary key of type Text. It is used to encapsulate detailed information about related entities.
The primary key of the record. It uniquely identifies each record within the dataset. This attribute is required and must be unique across all records.
An external identifier for the record, which can be used to link the record to external systems or datasets. This attribute is optional but should be unique if provided.
The name of the record. This attribute provides a human-readable identifier for the record, making it easier to recognize and differentiate records in lists or other displays. This attribute is optional.
The type of the record object. This attribute is used to classify the record into specific categories or types, helping to organize and manage different kinds of records. This attribute is optional.
This structure represents an abstract object with a primary key of type Text. It is used to encapsulate detailed information about related entities.
The primary key of the record. It uniquely identifies each record within the dataset. This attribute is required and must be unique across all records.
An external identifier for the record, which can be used to link the record to external systems or datasets. This attribute is optional but should be unique if provided.
The name of the record. This attribute provides a human-readable identifier for the record, making it easier to recognize and differentiate records in lists or other displays. This attribute is optional.
The type of the record object. This attribute is used to classify the record into specific categories or types, helping to organize and manage different kinds of records. This attribute is optional.
Username used to log in into the system. The username is unique in the system
External Authentication identifier. Example Azure AD guid
Defines if a person should get notifications via e-mail
Defines if a contact should get notifications via SMS
Defines if the account is active and can be used
The date the record was updated
The date the record was created
Bad Request - The user has provided input that the browser is unable to convert.
{
"Errors": [
"The user has provided input that the browser is unable to convert.",
"There are multiple rows in the database for the same value",
"The value does not match the specified entity structure",
"..."
],
"Type": "/Errors/Bad Input",
"Title": "Bad Request",
"StatusCode": 400,
"Instance": "/OpenApi/rest/Xzy",
"RequestKey": "894ea43c-b8a6-4195-9a9c-82c07d9cc33a"
}
The list of errors. Throw specific exceptions based on the received error.
Human-readable explanation of the errors
URI identifier that categorizes the error
Brief, human-readable message about the error
The HTTP response code
URI that identifies the specific occurrence of the error
Provides a request key that identifies the current request.
Unauthorized - The response status code indicates that the client request has not been completed because it lacks valid authentication credentials for the requested resource.
{
"Errors": [
"The session Id or OAuth token used has expired or is invalid."
],
"Type": "/Errors/Unauthorized",
"Title": "Unauthorized",
"StatusCode": 401,
"Instance": "/OpenApi/rest/Xzy",
"RequestKey": "894ea43c-b8a6-4195-9a9c-82c07d9cc33a"
}
The list of errors. Throw specific exceptions based on the received error.
Human-readable explanation of the errors
URI identifier that categorizes the error
Brief, human-readable message about the error
The HTTP response code
URI that identifies the specific occurrence of the error
Provides a request key that identifies the current request.
Forbidden - The user does not have access to execute operation
{
"Errors": [
"The user does not have access to execute operation"
],
"Type": "/Errors/Permission",
"Title": "Bad Request",
"StatusCode": 403,
"Instance": "/OpenApi/rest/Xzy",
"RequestKey": "894ea43c-b8a6-4195-9a9c-82c07d9cc33a"
}
The list of errors. Throw specific exceptions based on the received error.
Human-readable explanation of the errors
URI identifier that categorizes the error
Brief, human-readable message about the error
The HTTP response code
URI that identifies the specific occurrence of the error
Provides a request key that identifies the current request.
Internal Server Error - An internal server error is an error on the web server you're trying to access.
{
"Errors": [
"An internal server error is an error on the web server you're trying to access."
],
"Type": "/Errors/Internal Server Error",
"Title": "Internal Server Error",
"StatusCode": 500,
"Instance": "/OpenApi/rest/Xzy",
"RequestKey": "894ea43c-b8a6-4195-9a9c-82c07d9cc33a"
}
The list of errors. Throw specific exceptions based on the received error.
Human-readable explanation of the errors
URI identifier that categorizes the error
Brief, human-readable message about the error
The HTTP response code
URI that identifies the specific occurrence of the error
Provides a request key that identifies the current request.