Merge "Add license in missing .http and .properties files"
[externalapi/nbi.git] / restclient / serviceOrder.http
1 #
2 #     Copyright (c) 2017 Orange.  All rights reserved.
3 #
4 #     Licensed under the Apache License, Version 2.0 (the "License");
5 #     you may not use this file except in compliance with the License.
6 #     You may obtain a copy of the License at
7 #
8 #         http://www.apache.org/licenses/LICENSE-2.0
9 #
10 #     Unless required by applicable law or agreed to in writing, software
11 #     distributed under the License is distributed on an "AS IS" BASIS,
12 #     WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 #     See the License for the specific language governing permissions and
14 #     limitations under the License.
15 #
16
17 ### Create REJECTED
18 POST  {{serviceOrder.url}}/serviceOrder
19     ?fields=id,state,description,relatedParty.id,toto
20 Accept: application/json
21 Content-Type: application/json
22
23 < ./json/serviceOrder_create_in_rejected.json
24
25 ### Create COMPLETED
26 POST  {{serviceOrder.url}}/serviceOrder
27     ?fields=id,state,description,relatedParty.id,toto
28 Accept: application/json
29 Content-Type: application/json
30
31 < ./json/serviceOrder_create_in_completed.json
32
33 ### List
34 GET  {{serviceOrder.url}}/serviceOrder/
35 Accept: application/json
36
37 ### List with fields
38 GET  {{serviceOrder.url}}/serviceOrder
39     ?fields=id,state,description,relatedParty.id
40 Accept: application/json
41
42 ### List COMPLETED
43 GET  {{serviceOrder.url}}/serviceOrder
44     ?state=COMPLETED
45 Accept: application/json