Endpoint - Add New User
Request
Post
AddNewUserRequest
AddNewUserRequest
Field Name | Type | Description |
---|---|---|
LinnworksUniqueIdentifier | GUID | Uniqueidentifer of the Linnworks customer's account. Will never change. |
String | Email of the customer, subject to change. | |
AccountName | String | Account name being integrated into the system. Will never change and on integration it is suggest that duplicates are checked for. Nb. Customers may expect to have multiple integrations of the same channel in Linnworks. |
Sample
{
"LinnworksUniqueIdentifier": "005d4263-5a0c-43ce-bdc5-526955604107",
"Email": "[email protected]",
"AccountName": "My Account name"
}
Response
AddNewUserResponse
AddNewUserResponse
Field Name | Type | Description |
---|---|---|
Error | String | Error string if there was an issue with the call.null or Empty string are valid when no error |
AuthorizationToken | String | If successful the authorization token string of the customer. This will be used for all subsequent calls. |
IsError | Boolean | Indicates if there is an error |
Sample
{
"AuthorizationToken": "a8e53e86eead4b69beaa0afcc29b67fb",
"IsError": false,
"ErrorMessage": null
}
{
"AuthorizationToken": "",
"IsError": true,
"ErrorMessage": "An error to display to the user"
}
Updated over 1 year ago