initial framework commit
This commit is contained in:
parent
c3db6173c1
commit
b6af450fa7
27
Ajera-ListProjects.ps1
Normal file
27
Ajera-ListProjects.ps1
Normal file
@ -0,0 +1,27 @@
|
|||||||
|
<#
|
||||||
|
https://help.deltek.com/Product/Ajera/api/projects.html#messages-api-endpoint-post
|
||||||
|
|
||||||
|
|
||||||
|
#>
|
||||||
|
|
||||||
|
|
||||||
|
$MPE_Ajera_URI = "https://ajera.mpe.ca/ajera/AjeraAPI.ashx"
|
||||||
|
$MPE_Ajera_API_Token =
|
||||||
|
|
||||||
|
|
||||||
|
$req_body = @{
|
||||||
|
Method = 'ListProjects'
|
||||||
|
SessionToken = ''
|
||||||
|
MethodArguments = @{
|
||||||
|
FilterByStatus = '["Active", "Hold"]'
|
||||||
|
FilterByCompany = '[1]'
|
||||||
|
FilterByNameLike = "Description"
|
||||||
|
FilterByDescriptionLike = "Project Description"
|
||||||
|
FilterByDescriptionEquals = "Project Description"
|
||||||
|
FilterByIDLike = "03-M4"
|
||||||
|
FilterByProjectType = '[1, null]'
|
||||||
|
FilterBySyncToCRM = '[true]'
|
||||||
|
FilterByEarliestModifiedDate = "2015-03-11"
|
||||||
|
FilterByLatestModifiedDate = "2015-03-11"
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user