POST api/docs/EffectChange?time={time}&sig={sig}

Request Information

URI Parameters

NameDescriptionTypeAdditional information
time

string

Required

sig

string

Required

Body Parameters

Collection of integer

Request Formats

application/json, text/json

Sample:
[
  1,
  2
]

application/xml, text/xml

Sample:
<ArrayOfint xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <int>1</int>
  <int>2</int>
</ArrayOfint>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Collection of DocChangeEffectModel
NameDescriptionTypeAdditional information
DocId

integer

None.

EffectStatusId_Before

byte

None.

EffectStatusId_After

byte

None.

Response Formats

application/json, text/json

Sample:
[
  {
    "DocId": 1,
    "EffectStatusId_Before": 64,
    "EffectStatusId_After": 64
  },
  {
    "DocId": 1,
    "EffectStatusId_Before": 64,
    "EffectStatusId_After": 64
  }
]

application/xml, text/xml

Sample:
<ArrayOfDocChangeEffectModel xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/LawsAPI.Models">
  <DocChangeEffectModel>
    <DocId>1</DocId>
    <EffectStatusId_After>64</EffectStatusId_After>
    <EffectStatusId_Before>64</EffectStatusId_Before>
  </DocChangeEffectModel>
  <DocChangeEffectModel>
    <DocId>1</DocId>
    <EffectStatusId_After>64</EffectStatusId_After>
    <EffectStatusId_Before>64</EffectStatusId_Before>
  </DocChangeEffectModel>
</ArrayOfDocChangeEffectModel>