WashDryFold (WDF) ProLink Users
This resource represents WashDryFold (WDF) ProLink users.
Operations
Get WDF users
Return list of WDF users associated with a particular location
Requirements: Account Admin or 'WDF' privilege
GET /api/location/{locationID}/wdf/user
Name | Type | Description | Notes |
|---|---|---|---|
| int | UserAccount ID |
|
| string | User name |
|
| string | Card number |
|
| int | Identifier signifying color | Valid #s 1-9 |
Get WDF user
Return details about a single WDF user
Requirements: Account Admin or 'WDF' privilege
GET /api/location/{locationID}/wdf/user/{userAccountID}
Name | Type | Description | Notes |
|---|---|---|---|
| int | UserAccount ID |
|
| string | User name |
|
| string | Card number |
|
| int | Identifier signifying color | Valid #s 1-9 |
Create WDF user
Create new WDF user.
Raw Body must be provided with request details with only fields to be set. Response will be returned as WDF User GET.
Requirements: Account Admin or 'WDF' privilege
POST /api/location/{locationID}/wdf/user
Name | Type | Description | Notes |
|---|---|---|---|
| string | User name | Optional |
| string | Card number | Optional |
| int | Identifier signifying color | Optional |
Edit WDF user
Edit details for a particular WDF user.
Raw Body must be provided with request details with only fields to be changed. Response will be returned as WDF User GET.
Requirements: Account Admin or 'WDF' privilege
PATCH /api/location/{locationID}/wdf/user/{userAccountID}
Name | Type | Description | Notes |
|---|---|---|---|
| string | User name | Optional |
| string | Card number | Optional |
| int | Identifier signifying color | Optional |
Delete WDF user
Deletes a particular WDF user. Disallowed if user has been associated with any WDF order (open or finished)
Requirements: Account Admin or 'WDF' privilege
DELETE /api/location/{locationID}/wdf/user/{userAccountID}