User Manual

12.27.2024

MANUAL

Developer Function: Script: $p.apiUsersCreate

The Japanese version of the manual is the latest.
Please also check.
## Overview This explains the method that allows you to create users by Ajax POST requests. Use this when you want to create user information. ## Syntax ##### JavaScript ``` $p.apiUsersCreate({ data: { <user information to create> }, done: <any process>, fail: <any process>, always: <any process> }); ``` ## Description of each parameter |Parameter name|Description|Required| |:--|:--|:--:| |data|User information to create *See supplementary information in margin|No| |done|API communication successful|Yes| |fail|API communication failed|No| |always|Completed|No| *For user information to be created, set the same parameters as [API user creation](api-user-create). Please set the parameters by referring to the linked manual. ## Usage example ##### JavaScript ``` $p.apiUsersCreate({ data: { LoginId: 'TESTUSER', Name: 'USER1', Password: '123456', MailAddresses: [ 'test@example.co.jp' ], }, done: function (data) { console.log(data); console.log('User information creation was successful.'); }, fail: function (data) { console.log('User information creation failed.'); }, always: function (data) { console.log('User information creation completed'); } }); ```
code VS Codeで開発作業をもっとスマートに

スクリプト開発の効率を高めたい方に、Code Assistをご用意しています。

Code Assistの詳細はこちら →
account_tree 複雑な構成も、すっきり視覚化

サイト構成やデータのつながりを可視化し、把握しやすくします。

Site Visualizerの詳細はこちら →
TOP