zoukankan      html  css  js  c++  java
  • project online get approvals task data 获取审批待办任务接口

    调用接口地址:重要 http://xxxx/sites/pwa/_vti_bin/PSI/ProjectServer.svc

    Header 三个必要参数:

    其中SOAPAction写死就行,如果是online就要用SharePointOnlineCredentials授权,Server版用NetworkCredential授权

    Post数据包含调用接口相关参数:

    复制代码
    <?xml version='1.0' encoding='UTF-8'?>
    <soap:Envelope xmlns:xsi='http://www.w3.org/2001/XMLSchema-instance' xmlns:xsd='http://www.w3.org/2001/XMLSchema'
        xmlns:soap='http://schemas.xmlsoap.org/soap/envelope/'>
        <soap:Body>
            <StatusingReadStatusApprovalsForProjectForGridJson2 xmlns='http://schemas.microsoft.com/office/project/server/webservices/PWA/'>
                <gridSerializerArgs>
                    <SortColumnNames></SortColumnNames>
                    <SortColumnOrders></SortColumnOrders>
                    <GroupColumnNames></GroupColumnNames>
                    <ShowTimeWithDates>false</ShowTimeWithDates>
                    <PagingInfo>
                        <string>FirstVisible:40</string>
                    </PagingInfo>
                    <RequestType>0</RequestType>
                </gridSerializerArgs>
                <fromDate>'/Date(1534032000000)/'</fromDate>
                <toDate>'/Date(1541980800000)/'</toDate>
                <durationFormat>5</durationFormat>
                <workFormat>2</workFormat>
                <filter>0</filter>
            </StatusingReadStatusApprovalsForProjectForGridJson2>
        </soap:Body>
    </soap:Envelope>
    复制代码

    返回数据如下图:

  • 相关阅读:
    Treap
    P1650 田忌赛马
    wqs二分
    P3810 【模板】三维偏序(陌上花开)(CDQ分治)
    UVA1205 Color a Tree
    P2887 [USACO07NOV]Sunscreen G
    Snowflake Snow Snowflakes
    P1613 跑路
    P5018 [NOIP2018 普及组] 对称二叉树
    装模作样的停课记录
  • 原文地址:https://www.cnblogs.com/systemnet123/p/10158925.html
Copyright © 2011-2022 走看看