Importing User Accounts

This manual is in pilot operation.

Overview

This function is the same as "Importing User Accounts" performed via fusion_place [Manager]. It allows you to add, update, or delete user accounts in bulk. Only users authorized as User Manager can execute this request.

How to Write a Request

Below is an example request for "Importing User Accounts":

<request type="IMPORT_USER_ACCOUNTS" desc="Importing User Accounts">
  <parameters/> (1)
  <contents>
    ADD_OR_UPDATE_USER_ACCOUNT,HDR,USER_ACCOUNT_NAME,... (2)
    ADD_OR_UPDATE_USER_ACCOUNT, DTL, "U001","Taro Roppongi",...
    ADD_OR_UPDATE_USER_ACCOUNT, DTL, "U002","Hanako Daikanyama",...
    ...
  </contents>
</request>
1 No parameters
2 Request Content

Parameters

There are no parameters.

Request Content

The request content is the data to be imported. The format is the same as that used when importing user accounts via fusion_place [Manager] (However,comma-separated format. Also, replacing special characters <, >, & is required).

For more details, refer to: Importable File Format

Response Content

Below is an example response for "Importing User Accounts":

<response type="IMPORT_USER_ACCOUNTS" desc="Importing User Accounts">
  <returned-contents> (1)
  </returned-contents>
  <result>
    <code>ERROR</code> (2)
    <started-at time-zone="Asia/Tokyo">2016/11/18 09:50:04.227</started-at>
    <ended-at time-zone="Asia/Tokyo">2016/11/18 09:50:07.828</ended-at>
    <messages>
      Characters other than alphanumeric, hyphen (-), underscore (_), and dot (.) are not allowed in the User Account Name... (3)
    </messages>
  </result>
</response>
1 Returned Content
2 Processing Result Code
3 Message

Returned Content

There is no returned content.

Message

If the result code is "SUCCESSFUL," nothing is displayed in the message field.

If the result code is anything other than "SUCCESSFUL," a message is displayed indicating the warning or error details.