Breadcrumbs

API - User Profiles


Overview

The list page that contains the User Profiles. Every user of Wisefish must have an active User Profile.

Endpoint name

userProfiles

Source table

WiFi User Profile

Fixed view


Requests allowed

GET, PATCH

Primary key

Code

Record ID

code

Procedures

None


Data

Field List

Property

Type

Max Len

Description


 code 

string 

10

The unique id of this profile.

Record ID

primary key

 systemId 

string (UUID) 




 description 

string 

50

Description of this User Profile


 locationId 

string (UUID) 




 locationCode 

string 

10



 stockCenterId 

string (UUID) 




 stockCenterCode 

string 

20



 allowPosAdjmtToProdLot 

boolean 




 postingStdDocOptions 

string (enum) 




 postingSales 

string (enum) 




 postingPurchases 

string (enum) 




 postingTransferDocuments 

string (enum) 




 reopenRAinPosting 

boolean 




 reopenDAinPosting 

boolean 




 allowByPassScheduledTrip 

boolean 




 stage 

string (enum) 




 consumptionStage 

string (enum) 




 addToOpenPallet 

boolean 




 lastModified 

datetime





Example Object

Expand to see the example json

An example of one object :

JSON
{
    "code": "INSIDE",
    "systemId": "d11b2438-a28f-ef11-b015-ea34eb14d1c3",
    "description": "Inside warehouse man",
    "locationId": "57cb189f-dd11-ef11-9f8b-6045bde9cc61",
    "locationCode": "BLUE",
    "stockCenterId": "00000000-0000-0000-0000-000000000000",
    "stockCenterCode": "",
    "allowPosAdjmtToProdLot": false,
    "postingStdDocOptions": "Both",
    "postingSales": "Both",
    "postingPurchases": "Both",
    "postingTransferDocuments": "Allowed",
    "reopenRAinPosting": false,
    "reopenDAinPosting": false,
    "allowByPassScheduledTrip": false,
    "stage": "PRODUCTION",
    "consumptionStage": "CONSUMPTION",
    "addToOpenPallet": false,
    "lastModified": "2025-08-26T16:18:30.957Z"
}


Usage

Read all entries

JSON
GET
.../userProfiles

Read a specific entry

JSON
GET
.../userProfiles('INSIDE')