To add a new custom field to the accounts schema in SAP Customer Data Cloud, you can use either of the following methods:
Schema Editor in the Admin Console: This is a user-friendly interface within the admin Console where you can visually add and configure custom fields directly in the accounts schema.
Navigate to the schema editor.
Add the new custom field with the desired attributes and settings.
Save the changes to update the schema.
REST API (accounts.setSchema): This method allows for programmatic updates to the accounts schema.
Make an API call toaccounts.setSchemawith the necessary parameters to define the new custom field.
Include the field's name, type, and any other required attributes in the request payload.
Both methods provide flexibility in how you manage and extend the user schema to include additional custom fields based on your specific requirements.
References
SAP Customer Data Cloud Schema Editor Documentation
SAP Customer Data Cloud REST API Documentation
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit