Hello SchedMD, The account and user properties are empty in association object of slurmdb job endpoint starting with Slurm REST API v0.0.43: root@admin:~# curl -s --header X-SLURM-USER-TOKEN:$SLURM_JWT http://localhost:6820/slurmdb/v0.0.40/job/15 | jq .jobs[].association { "account": "optic", "cluster": "hpc", "partition": "", "user": "jstrong", "id": 17 } root@admin:~# curl -s --header X-SLURM-USER-TOKEN:$SLURM_JWT http://localhost:6820/slurmdb/v0.0.41/job/15 | jq .jobs[].association { "account": "optic", "cluster": "hpc", "partition": "", "user": "jstrong", "id": 17 } root@admin:~# curl -s --header X-SLURM-USER-TOKEN:$SLURM_JWT http://localhost:6820/slurmdb/v0.0.42/job/15 | jq .jobs[].association { "account": "optic", "cluster": "hpc", "partition": "", "user": "jstrong", "id": 17 } root@admin:~# curl -s --header X-SLURM-USER-TOKEN:$SLURM_JWT http://localhost:6820/slurmdb/v0.0.43/job/15 | jq .jobs[].association { "account": "", "cluster": "hpc", "partition": "", "user": "", "id": 17 } Current version: root@admin:~# slurmrestd -V slurm 25.05.4 I get the same behavior with REST API v0.0.43 and v0.0.44 on Slurm 25.11.0. Is this a regression?