Hearing 🎨
Hearing Search
📌 POST
:/task/hearingsearch
Request (Body)
rf
: Contains only 0,1,2.clientnos
* : Alpha Numeric, Max 10 Characters.groupnos
* : Alpha Numeric, Max 10 Characters.tasknos.*
: Array Only, Max 1000 Values.hearinhnos
* : Array Only, Max 1000 Values.Only numbersdthearing dtcreate dtremind
: Array Only, Max 2 Values.dthearing.* dtcreate.* dtremind.*
: Date (ISO Format Required).
Response
// Success
{
"success":true,
"data" : [...],
"params" : {....} ,
"msg": "Hearing Loaded"
}
// Error
{
"error": [],
"success":false,
"msg":"Check Parameters"
}
Hearing Add
📌 POST
:/task/hearingadd
Request (Body)
taskno
: Max 10 Characters,only Alpha Numeric.hname
* : min 2 and Max 50 characters.dthear dtremind dtcreate
:Invalid Dates (ISO Format Required).
Note:
- For adding a hearing the user must have
hashearing
Permission.
Response
// Success
{
"success":true,
"params" : {....} ,
"msg": "Hearing added"
}
// Error
{
"error": [],
"success":false,
"msg":"Check Parameters"
}
Hearing Update
📌 POST
:/task/hearingupdate
Request (body)
hearingno
* : Only Inategers.taskno
* : Max 10 Characters,only Alpha Numeric.hname
: min 2 and Max 50 characters.hdescp
: .....teamdescp
: ....dthear dtremind dtcreate
: Invalid Dates (ISO Format Required).isdone
: only 0 and 1 allowed.
Response
// Success
{
"success":true,
"params" : {....} ,
"msg": "Task Hearing Updated"
}
// Error
{
"error": [],
"success":false,
"msg":"Check Parameters"
}
Hearing Delete
📌 POST
:/task/hearingdelete
Request (body)
hearingno
* : Only Inategers.
Note :
- The user must have
hasdelete
Permission.
Response
// Success
{
"success":true,
"params" : {....} ,
"no" : "hearingno" ,
"msg": "Hearing Deleted"
}
// Error
{
"error": [],
"success":false,
"msg":"Check Parameters"
}