├── LICENSE ├── README.md └── Trello.postman_collection /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2017 Sebastian Hesse 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # trello-postman-collection 2 | A Postman collection for Trello REST Api. Collection is saved in v2. 3 | 4 | 5 | ## Install 6 | 1. Download [the collection file](Trello.postman_collection) and save it on your computer. 7 | 2. Follow [these instructions](https://www.getpostman.com/docs/postman/collections/data_formats) to include it into your Postman. 8 | 3. Consider the notes below and use it :) 9 | 10 | 11 | ## Notes 12 | - You have to create an environment in Postman including at least the key `host`. This should always have the value `https://api.trello.com/1`. Take a look [here on how to create environments](https://www.getpostman.com/docs/postman/environments_and_globals/manage_environments). 13 | - Since Trello is using OAuth 1.0a, for a request you need to select *OAuth 1.0* within the *Authorization* tab in Postman. Take a look [here](https://www.getpostman.com/docs/postman/sending_api_requests/authorization). Therefore in this Trello collection, the following keys are assumed to be available in the environment configuration: `consumer_key`, `consumer_secret`, `token`, `token_secret`. Take a look [here and get your Trello API keys](https://trello.com/app-key). 14 | 15 | 16 | ## Supported Endpoints 17 | 18 | |Method|Path| 19 | |------|-----| 20 | |GET|/boards| 21 | |GET|/boards/:id| 22 | |GET|/boards/:id/actions| 23 | |GET|/boards/:id/cards| 24 | |GET|/boards/:id/labels| 25 | |GET|/boards/:id/lists| 26 | |GET|/boards/:id/members| 27 | |GET|/boards/:id/organization| 28 | |PUT|/boards/:id| 29 | |POST|/boards| 30 | | | | 31 | |GET|/cards/:id| 32 | |GET|/cards/:id/actions| 33 | |GET|/cards/:id/attachments| 34 | |GET|/cards/:id/board| 35 | |GET|/cards/:id/checklists| 36 | |GET|/cards/:id/list| 37 | |GET|/cards/:id/members| 38 | |GET|/cards/:id/stickers| 39 | |PUT|/cards/:id| 40 | |PUT|/cards/:id/desc| 41 | |POST|/cards| 42 | |DELETE|/cards/:id| 43 | | | | 44 | |GET|/lists/:id| 45 | |GET|/lists/:id/actions| 46 | |GET|/lists/:id/board| 47 | |GET|/lists/:id/cards| 48 | |PUT|/lists/:id| 49 | |POST|/lists| 50 | | | | 51 | |GET|/members/me| 52 | |GET|/members/:id/actions| 53 | |GET|/members/:id/boards| 54 | |GET|/members/:id/cards| 55 | |GET|/members/:id/notifications| 56 | |GET|/members/:id/organizations| 57 | |GET|/members/:id/tokens| 58 | | | | 59 | |GET|/tokens/:token| 60 | |GET|/tokens/:token/webhooks| 61 | | | | 62 | |GET|/webhooks/:id| 63 | |PUT|/webhooks| 64 | |DELETE|/webhooks/:id| 65 | 66 | 67 | ## License 68 | MIT License 69 | 70 | Copyright (c) 2017 [Sebastian Hesse](https://www.sebastianhesse.de) 71 | 72 | Permission is hereby granted, free of charge, to any person obtaining a copy 73 | of this software and associated documentation files (the "Software"), to deal 74 | in the Software without restriction, including without limitation the rights 75 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 76 | copies of the Software, and to permit persons to whom the Software is 77 | furnished to do so, subject to the following conditions: 78 | 79 | The above copyright notice and this permission notice shall be included in all 80 | copies or substantial portions of the Software. 81 | 82 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 83 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 84 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 85 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 86 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 87 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 88 | SOFTWARE. 89 | -------------------------------------------------------------------------------- /Trello.postman_collection: -------------------------------------------------------------------------------- 1 | { 2 | "variables": [], 3 | "info": { 4 | "name": "Trello", 5 | "_postman_id": "08b4674d-32d7-a2c0-7421-15325b3181a7", 6 | "description": "", 7 | "schema": "https://schema.getpostman.com/json/collection/v2.0.0/collection.json" 8 | }, 9 | "item": [ 10 | { 11 | "name": "boards", 12 | "description": "", 13 | "item": [ 14 | { 15 | "name": "/boards/:id", 16 | "request": { 17 | "auth": { 18 | "type": "oauth1", 19 | "oauth1": { 20 | "consumerKey": "{{consumer_key}}", 21 | "consumerSecret": "{{consumer_secret}}", 22 | "token": "{{token}}", 23 | "tokenSecret": "{{token_secret}}", 24 | "signatureMethod": "HMAC-SHA1", 25 | "timestamp": 1499860097, 26 | "nonce": "OOVu6c", 27 | "version": "1.0A", 28 | "realm": "", 29 | "addParamsToHeader": false, 30 | "addEmptyParamsToSign": false 31 | } 32 | }, 33 | "url": { 34 | "raw": "{{host}}/boards/:id", 35 | "host": [ 36 | "{{host}}" 37 | ], 38 | "path": [ 39 | "boards", 40 | ":id" 41 | ], 42 | "query": [], 43 | "variable": [ 44 | { 45 | "key": "id", 46 | "value": "" 47 | } 48 | ] 49 | }, 50 | "method": "GET", 51 | "header": [], 52 | "body": {}, 53 | "description": "" 54 | }, 55 | "response": [] 56 | }, 57 | { 58 | "name": "/boards/:id/actions", 59 | "request": { 60 | "auth": { 61 | "type": "oauth1", 62 | "oauth1": { 63 | "consumerKey": "{{consumer_key}}", 64 | "consumerSecret": "{{consumer_secret}}", 65 | "token": "{{token}}", 66 | "tokenSecret": "{{token_secret}}", 67 | "signatureMethod": "HMAC-SHA1", 68 | "timestamp": 1499860097, 69 | "nonce": "OOVu6c", 70 | "version": "1.0A", 71 | "realm": "", 72 | "addParamsToHeader": false, 73 | "addEmptyParamsToSign": false 74 | } 75 | }, 76 | "url": { 77 | "raw": "{{host}}/boards/:id/actions", 78 | "host": [ 79 | "{{host}}" 80 | ], 81 | "path": [ 82 | "boards", 83 | ":id", 84 | "actions" 85 | ], 86 | "query": [], 87 | "variable": [ 88 | { 89 | "key": "id", 90 | "value": "" 91 | } 92 | ] 93 | }, 94 | "method": "GET", 95 | "header": [], 96 | "body": {}, 97 | "description": "" 98 | }, 99 | "response": [] 100 | }, 101 | { 102 | "name": "/boards/:id/cards", 103 | "request": { 104 | "auth": { 105 | "type": "oauth1", 106 | "oauth1": { 107 | "consumerKey": "{{consumer_key}}", 108 | "consumerSecret": "{{consumer_secret}}", 109 | "token": "{{token}}", 110 | "tokenSecret": "{{token_secret}}", 111 | "signatureMethod": "HMAC-SHA1", 112 | "timestamp": 1499860097, 113 | "nonce": "OOVu6c", 114 | "version": "1.0A", 115 | "realm": "", 116 | "addParamsToHeader": false, 117 | "addEmptyParamsToSign": false 118 | } 119 | }, 120 | "url": { 121 | "raw": "{{host}}/boards/:id/cards", 122 | "host": [ 123 | "{{host}}" 124 | ], 125 | "path": [ 126 | "boards", 127 | ":id", 128 | "cards" 129 | ], 130 | "query": [], 131 | "variable": [ 132 | { 133 | "key": "id", 134 | "value": "" 135 | } 136 | ] 137 | }, 138 | "method": "GET", 139 | "header": [], 140 | "body": {}, 141 | "description": "" 142 | }, 143 | "response": [] 144 | }, 145 | { 146 | "name": "/boards/:id/labels", 147 | "request": { 148 | "auth": { 149 | "type": "oauth1", 150 | "oauth1": { 151 | "consumerKey": "{{consumer_key}}", 152 | "consumerSecret": "{{consumer_secret}}", 153 | "token": "{{token}}", 154 | "tokenSecret": "{{token_secret}}", 155 | "signatureMethod": "HMAC-SHA1", 156 | "timestamp": 1499860097, 157 | "nonce": "OOVu6c", 158 | "version": "1.0A", 159 | "realm": "", 160 | "addParamsToHeader": false, 161 | "addEmptyParamsToSign": false 162 | } 163 | }, 164 | "url": { 165 | "raw": "{{host}}/boards/:id/labels", 166 | "host": [ 167 | "{{host}}" 168 | ], 169 | "path": [ 170 | "boards", 171 | ":id", 172 | "labels" 173 | ], 174 | "query": [], 175 | "variable": [ 176 | { 177 | "key": "id", 178 | "value": "" 179 | } 180 | ] 181 | }, 182 | "method": "GET", 183 | "header": [], 184 | "body": {}, 185 | "description": "" 186 | }, 187 | "response": [] 188 | }, 189 | { 190 | "name": "/boards/:id/lists", 191 | "request": { 192 | "auth": { 193 | "type": "oauth1", 194 | "oauth1": { 195 | "consumerKey": "{{consumer_key}}", 196 | "consumerSecret": "{{consumer_secret}}", 197 | "token": "{{token}}", 198 | "tokenSecret": "{{token_secret}}", 199 | "signatureMethod": "HMAC-SHA1", 200 | "timestamp": 1499860097, 201 | "nonce": "OOVu6c", 202 | "version": "1.0A", 203 | "realm": "", 204 | "addParamsToHeader": false, 205 | "addEmptyParamsToSign": false 206 | } 207 | }, 208 | "url": { 209 | "raw": "{{host}}/boards/:id/lists", 210 | "host": [ 211 | "{{host}}" 212 | ], 213 | "path": [ 214 | "boards", 215 | ":id", 216 | "lists" 217 | ], 218 | "query": [], 219 | "variable": [ 220 | { 221 | "key": "id", 222 | "value": "" 223 | } 224 | ] 225 | }, 226 | "method": "GET", 227 | "header": [], 228 | "body": {}, 229 | "description": "" 230 | }, 231 | "response": [] 232 | }, 233 | { 234 | "name": "/boards/:id/members", 235 | "request": { 236 | "auth": { 237 | "type": "oauth1", 238 | "oauth1": { 239 | "consumerKey": "{{consumer_key}}", 240 | "consumerSecret": "{{consumer_secret}}", 241 | "token": "{{token}}", 242 | "tokenSecret": "{{token_secret}}", 243 | "signatureMethod": "HMAC-SHA1", 244 | "timestamp": 1499860097, 245 | "nonce": "OOVu6c", 246 | "version": "1.0A", 247 | "realm": "", 248 | "addParamsToHeader": false, 249 | "addEmptyParamsToSign": false 250 | } 251 | }, 252 | "url": { 253 | "raw": "{{host}}/boards/:id/members", 254 | "host": [ 255 | "{{host}}" 256 | ], 257 | "path": [ 258 | "boards", 259 | ":id", 260 | "members" 261 | ], 262 | "query": [], 263 | "variable": [ 264 | { 265 | "key": "id", 266 | "value": "" 267 | } 268 | ] 269 | }, 270 | "method": "GET", 271 | "header": [], 272 | "body": {}, 273 | "description": "" 274 | }, 275 | "response": [] 276 | }, 277 | { 278 | "name": "/boards/:id/organization", 279 | "request": { 280 | "auth": { 281 | "type": "oauth1", 282 | "oauth1": { 283 | "consumerKey": "{{consumer_key}}", 284 | "consumerSecret": "{{consumer_secret}}", 285 | "token": "{{token}}", 286 | "tokenSecret": "{{token_secret}}", 287 | "signatureMethod": "HMAC-SHA1", 288 | "timestamp": 1499860097, 289 | "nonce": "OOVu6c", 290 | "version": "1.0A", 291 | "realm": "", 292 | "addParamsToHeader": false, 293 | "addEmptyParamsToSign": false 294 | } 295 | }, 296 | "url": { 297 | "raw": "{{host}}/boards/:id/organization", 298 | "host": [ 299 | "{{host}}" 300 | ], 301 | "path": [ 302 | "boards", 303 | ":id", 304 | "organization" 305 | ], 306 | "query": [], 307 | "variable": [ 308 | { 309 | "key": "id", 310 | "value": "" 311 | } 312 | ] 313 | }, 314 | "method": "GET", 315 | "header": [], 316 | "body": {}, 317 | "description": "" 318 | }, 319 | "response": [] 320 | }, 321 | { 322 | "name": "/boards/:id", 323 | "request": { 324 | "auth": { 325 | "type": "oauth1", 326 | "oauth1": { 327 | "consumerKey": "{{consumer_key}}", 328 | "consumerSecret": "{{consumer_secret}}", 329 | "token": "{{token}}", 330 | "tokenSecret": "{{token_secret}}", 331 | "signatureMethod": "HMAC-SHA1", 332 | "timestamp": 1499860097, 333 | "nonce": "OOVu6c", 334 | "version": "1.0A", 335 | "realm": "", 336 | "addParamsToHeader": false, 337 | "addEmptyParamsToSign": false 338 | } 339 | }, 340 | "url": { 341 | "raw": "{{host}}/boards/:id", 342 | "host": [ 343 | "{{host}}" 344 | ], 345 | "path": [ 346 | "boards", 347 | ":id" 348 | ], 349 | "query": [], 350 | "variable": [ 351 | { 352 | "key": "id", 353 | "value": "" 354 | } 355 | ] 356 | }, 357 | "method": "PUT", 358 | "header": [ 359 | { 360 | "key": "Content-Type", 361 | "value": "application/json", 362 | "description": "" 363 | } 364 | ], 365 | "body": { 366 | "mode": "raw", 367 | "raw": "{\n \"name\": \"put in this JSON only the fields you want to update\"\n}" 368 | }, 369 | "description": "" 370 | }, 371 | "response": [] 372 | }, 373 | { 374 | "name": "/boards", 375 | "request": { 376 | "auth": { 377 | "type": "oauth1", 378 | "oauth1": { 379 | "consumerKey": "{{consumer_key}}", 380 | "consumerSecret": "{{consumer_secret}}", 381 | "token": "{{token}}", 382 | "tokenSecret": "{{token_secret}}", 383 | "signatureMethod": "HMAC-SHA1", 384 | "timestamp": 1499860097, 385 | "nonce": "OOVu6c", 386 | "version": "1.0A", 387 | "realm": "", 388 | "addParamsToHeader": false, 389 | "addEmptyParamsToSign": false 390 | } 391 | }, 392 | "url": "{{host}}/boards", 393 | "method": "POST", 394 | "header": [ 395 | { 396 | "key": "Content-Type", 397 | "value": "application/json", 398 | "description": "" 399 | } 400 | ], 401 | "body": { 402 | "mode": "raw", 403 | "raw": "{\n \"name\": \"Board name\",\n \"desc\": \"Your Description\"\n}" 404 | }, 405 | "description": "" 406 | }, 407 | "response": [] 408 | } 409 | ] 410 | }, 411 | { 412 | "name": "cards", 413 | "description": "", 414 | "item": [ 415 | { 416 | "name": "/cards/:id", 417 | "request": { 418 | "auth": { 419 | "type": "oauth1", 420 | "oauth1": { 421 | "consumerKey": "{{consumer_key}}", 422 | "consumerSecret": "{{consumer_secret}}", 423 | "token": "{{token}}", 424 | "tokenSecret": "{{token_secret}}", 425 | "signatureMethod": "HMAC-SHA1", 426 | "timestamp": 1499860097, 427 | "nonce": "OOVu6c", 428 | "version": "1.0A", 429 | "realm": "", 430 | "addParamsToHeader": false, 431 | "addEmptyParamsToSign": false 432 | } 433 | }, 434 | "url": { 435 | "raw": "{{host}}/cards/:id", 436 | "host": [ 437 | "{{host}}" 438 | ], 439 | "path": [ 440 | "cards", 441 | ":id" 442 | ], 443 | "query": [], 444 | "variable": [ 445 | { 446 | "key": "id", 447 | "value": "" 448 | } 449 | ] 450 | }, 451 | "method": "GET", 452 | "header": [], 453 | "body": {}, 454 | "description": "" 455 | }, 456 | "response": [] 457 | }, 458 | { 459 | "name": "/cards/:id/actions", 460 | "request": { 461 | "auth": { 462 | "type": "oauth1", 463 | "oauth1": { 464 | "consumerKey": "{{consumer_key}}", 465 | "consumerSecret": "{{consumer_secret}}", 466 | "token": "{{token}}", 467 | "tokenSecret": "{{token_secret}}", 468 | "signatureMethod": "HMAC-SHA1", 469 | "timestamp": 1499860097, 470 | "nonce": "OOVu6c", 471 | "version": "1.0A", 472 | "realm": "", 473 | "addParamsToHeader": false, 474 | "addEmptyParamsToSign": false 475 | } 476 | }, 477 | "url": { 478 | "raw": "{{host}}/cards/:id/actions", 479 | "host": [ 480 | "{{host}}" 481 | ], 482 | "path": [ 483 | "cards", 484 | ":id", 485 | "actions" 486 | ], 487 | "query": [], 488 | "variable": [ 489 | { 490 | "key": "id", 491 | "value": "" 492 | } 493 | ] 494 | }, 495 | "method": "GET", 496 | "header": [], 497 | "body": {}, 498 | "description": "" 499 | }, 500 | "response": [] 501 | }, 502 | { 503 | "name": "/cards/:id/attachments", 504 | "request": { 505 | "auth": { 506 | "type": "oauth1", 507 | "oauth1": { 508 | "consumerKey": "{{consumer_key}}", 509 | "consumerSecret": "{{consumer_secret}}", 510 | "token": "{{token}}", 511 | "tokenSecret": "{{token_secret}}", 512 | "signatureMethod": "HMAC-SHA1", 513 | "timestamp": 1499860097, 514 | "nonce": "OOVu6c", 515 | "version": "1.0A", 516 | "realm": "", 517 | "addParamsToHeader": false, 518 | "addEmptyParamsToSign": false 519 | } 520 | }, 521 | "url": { 522 | "raw": "{{host}}/cards/:id/attachments", 523 | "host": [ 524 | "{{host}}" 525 | ], 526 | "path": [ 527 | "cards", 528 | ":id", 529 | "attachments" 530 | ], 531 | "query": [], 532 | "variable": [ 533 | { 534 | "key": "id", 535 | "value": "" 536 | } 537 | ] 538 | }, 539 | "method": "GET", 540 | "header": [], 541 | "body": {}, 542 | "description": "" 543 | }, 544 | "response": [] 545 | }, 546 | { 547 | "name": "/cards/:id/board", 548 | "request": { 549 | "auth": { 550 | "type": "oauth1", 551 | "oauth1": { 552 | "consumerKey": "{{consumer_key}}", 553 | "consumerSecret": "{{consumer_secret}}", 554 | "token": "{{token}}", 555 | "tokenSecret": "{{token_secret}}", 556 | "signatureMethod": "HMAC-SHA1", 557 | "timestamp": 1499860097, 558 | "nonce": "OOVu6c", 559 | "version": "1.0A", 560 | "realm": "", 561 | "addParamsToHeader": false, 562 | "addEmptyParamsToSign": false 563 | } 564 | }, 565 | "url": { 566 | "raw": "{{host}}/cards/:id/board", 567 | "host": [ 568 | "{{host}}" 569 | ], 570 | "path": [ 571 | "cards", 572 | ":id", 573 | "board" 574 | ], 575 | "query": [], 576 | "variable": [ 577 | { 578 | "key": "id", 579 | "value": "" 580 | } 581 | ] 582 | }, 583 | "method": "GET", 584 | "header": [], 585 | "body": {}, 586 | "description": "" 587 | }, 588 | "response": [] 589 | }, 590 | { 591 | "name": "/cards/:id/checklists", 592 | "request": { 593 | "auth": { 594 | "type": "oauth1", 595 | "oauth1": { 596 | "consumerKey": "{{consumer_key}}", 597 | "consumerSecret": "{{consumer_secret}}", 598 | "token": "{{token}}", 599 | "tokenSecret": "{{token_secret}}", 600 | "signatureMethod": "HMAC-SHA1", 601 | "timestamp": 1499860097, 602 | "nonce": "OOVu6c", 603 | "version": "1.0A", 604 | "realm": "", 605 | "addParamsToHeader": false, 606 | "addEmptyParamsToSign": false 607 | } 608 | }, 609 | "url": { 610 | "raw": "{{host}}/cards/:id/checklists", 611 | "host": [ 612 | "{{host}}" 613 | ], 614 | "path": [ 615 | "cards", 616 | ":id", 617 | "checklists" 618 | ], 619 | "query": [], 620 | "variable": [ 621 | { 622 | "key": "id", 623 | "value": "" 624 | } 625 | ] 626 | }, 627 | "method": "GET", 628 | "header": [], 629 | "body": {}, 630 | "description": "" 631 | }, 632 | "response": [] 633 | }, 634 | { 635 | "name": "/cards/:id/list", 636 | "request": { 637 | "auth": { 638 | "type": "oauth1", 639 | "oauth1": { 640 | "consumerKey": "{{consumer_key}}", 641 | "consumerSecret": "{{consumer_secret}}", 642 | "token": "{{token}}", 643 | "tokenSecret": "{{token_secret}}", 644 | "signatureMethod": "HMAC-SHA1", 645 | "timestamp": 1499860097, 646 | "nonce": "OOVu6c", 647 | "version": "1.0A", 648 | "realm": "", 649 | "addParamsToHeader": false, 650 | "addEmptyParamsToSign": false 651 | } 652 | }, 653 | "url": { 654 | "raw": "{{host}}/cards/:id/list", 655 | "host": [ 656 | "{{host}}" 657 | ], 658 | "path": [ 659 | "cards", 660 | ":id", 661 | "list" 662 | ], 663 | "query": [], 664 | "variable": [ 665 | { 666 | "key": "id", 667 | "value": "" 668 | } 669 | ] 670 | }, 671 | "method": "GET", 672 | "header": [], 673 | "body": {}, 674 | "description": "" 675 | }, 676 | "response": [] 677 | }, 678 | { 679 | "name": "/cards/:id/members", 680 | "request": { 681 | "auth": { 682 | "type": "oauth1", 683 | "oauth1": { 684 | "consumerKey": "{{consumer_key}}", 685 | "consumerSecret": "{{consumer_secret}}", 686 | "token": "{{token}}", 687 | "tokenSecret": "{{token_secret}}", 688 | "signatureMethod": "HMAC-SHA1", 689 | "timestamp": 1499860097, 690 | "nonce": "OOVu6c", 691 | "version": "1.0A", 692 | "realm": "", 693 | "addParamsToHeader": false, 694 | "addEmptyParamsToSign": false 695 | } 696 | }, 697 | "url": { 698 | "raw": "{{host}}/cards/:id/members", 699 | "host": [ 700 | "{{host}}" 701 | ], 702 | "path": [ 703 | "cards", 704 | ":id", 705 | "members" 706 | ], 707 | "query": [], 708 | "variable": [ 709 | { 710 | "key": "id", 711 | "value": "" 712 | } 713 | ] 714 | }, 715 | "method": "GET", 716 | "header": [], 717 | "body": {}, 718 | "description": "" 719 | }, 720 | "response": [] 721 | }, 722 | { 723 | "name": "/cards/:id", 724 | "request": { 725 | "auth": { 726 | "type": "oauth1", 727 | "oauth1": { 728 | "consumerKey": "{{consumer_key}}", 729 | "consumerSecret": "{{consumer_secret}}", 730 | "token": "{{token}}", 731 | "tokenSecret": "{{token_secret}}", 732 | "signatureMethod": "HMAC-SHA1", 733 | "timestamp": 1499860097, 734 | "nonce": "OOVu6c", 735 | "version": "1.0A", 736 | "realm": "", 737 | "addParamsToHeader": false, 738 | "addEmptyParamsToSign": false 739 | } 740 | }, 741 | "url": { 742 | "raw": "{{host}}/cards/:id", 743 | "host": [ 744 | "{{host}}" 745 | ], 746 | "path": [ 747 | "cards", 748 | ":id" 749 | ], 750 | "query": [], 751 | "variable": [ 752 | { 753 | "key": "id", 754 | "value": "" 755 | } 756 | ] 757 | }, 758 | "method": "PUT", 759 | "header": [ 760 | { 761 | "key": "Content-Type", 762 | "value": "application/json", 763 | "description": "" 764 | } 765 | ], 766 | "body": { 767 | "mode": "raw", 768 | "raw": "{\n \"name\": \"put in this JSON only the fields you want to update\"\n}" 769 | }, 770 | "description": "" 771 | }, 772 | "response": [] 773 | }, 774 | { 775 | "name": "/cards/:id/desc", 776 | "request": { 777 | "auth": { 778 | "type": "oauth1", 779 | "oauth1": { 780 | "consumerKey": "{{consumer_key}}", 781 | "consumerSecret": "{{consumer_secret}}", 782 | "token": "{{token}}", 783 | "tokenSecret": "{{token_secret}}", 784 | "signatureMethod": "HMAC-SHA1", 785 | "timestamp": 1499860097, 786 | "nonce": "OOVu6c", 787 | "version": "1.0A", 788 | "realm": "", 789 | "addParamsToHeader": false, 790 | "addEmptyParamsToSign": false 791 | } 792 | }, 793 | "url": { 794 | "raw": "{{host}}/cards/:id/desc", 795 | "host": [ 796 | "{{host}}" 797 | ], 798 | "path": [ 799 | "cards", 800 | ":id", 801 | "desc" 802 | ], 803 | "query": [], 804 | "variable": [ 805 | { 806 | "key": "id", 807 | "value": "" 808 | } 809 | ] 810 | }, 811 | "method": "PUT", 812 | "header": [ 813 | { 814 | "key": "Content-Type", 815 | "value": "application/x-www-form-urlencoded", 816 | "description": "" 817 | } 818 | ], 819 | "body": { 820 | "mode": "urlencoded", 821 | "urlencoded": [ 822 | { 823 | "key": "value", 824 | "value": "{{VALUE}}", 825 | "description": "", 826 | "type": "text" 827 | } 828 | ] 829 | }, 830 | "description": "" 831 | }, 832 | "response": [] 833 | }, 834 | { 835 | "name": "/cards", 836 | "request": { 837 | "auth": { 838 | "type": "oauth1", 839 | "oauth1": { 840 | "consumerKey": "{{consumer_key}}", 841 | "consumerSecret": "{{consumer_secret}}", 842 | "token": "{{token}}", 843 | "tokenSecret": "{{token_secret}}", 844 | "signatureMethod": "HMAC-SHA1", 845 | "timestamp": 1499860097, 846 | "nonce": "OOVu6c", 847 | "version": "1.0A", 848 | "realm": "", 849 | "addParamsToHeader": false, 850 | "addEmptyParamsToSign": false 851 | } 852 | }, 853 | "url": "{{host}}/cards", 854 | "method": "POST", 855 | "header": [ 856 | { 857 | "key": "Content-Type", 858 | "value": "application/json", 859 | "description": "" 860 | } 861 | ], 862 | "body": { 863 | "mode": "raw", 864 | "raw": "{\n \"desc\": \"your description\",\n \"descData\": {\n \"emoji\": {}\n },\n \"idBoard\": \"{{BOARD_ID}}\",\n \"idList\": \"{{LIST_ID}}\",\n \"name\": \"card name\"\n}" 865 | }, 866 | "description": "" 867 | }, 868 | "response": [] 869 | }, 870 | { 871 | "name": "/cards/:id", 872 | "request": { 873 | "auth": { 874 | "type": "oauth1", 875 | "oauth1": { 876 | "consumerKey": "{{consumer_key}}", 877 | "consumerSecret": "{{consumer_secret}}", 878 | "token": "{{token}}", 879 | "tokenSecret": "{{token_secret}}", 880 | "signatureMethod": "HMAC-SHA1", 881 | "timestamp": 1499860097, 882 | "nonce": "OOVu6c", 883 | "version": "1.0A", 884 | "realm": "", 885 | "addParamsToHeader": false, 886 | "addEmptyParamsToSign": false 887 | } 888 | }, 889 | "url": { 890 | "raw": "{{host}}/cards/:id", 891 | "host": [ 892 | "{{host}}" 893 | ], 894 | "path": [ 895 | "cards", 896 | ":id" 897 | ], 898 | "query": [], 899 | "variable": [ 900 | { 901 | "key": "id", 902 | "value": "" 903 | } 904 | ] 905 | }, 906 | "method": "DELETE", 907 | "header": [ 908 | { 909 | "key": "Content-Type", 910 | "value": "application/json", 911 | "description": "" 912 | } 913 | ], 914 | "body": { 915 | "mode": "raw", 916 | "raw": "{\n \"name\": \"put in this JSON only the fields you want to update\"\n}" 917 | }, 918 | "description": "" 919 | }, 920 | "response": [] 921 | } 922 | ] 923 | }, 924 | { 925 | "name": "lists", 926 | "description": "", 927 | "item": [ 928 | { 929 | "name": "/lists/:id", 930 | "request": { 931 | "auth": { 932 | "type": "oauth1", 933 | "oauth1": { 934 | "consumerKey": "{{consumer_key}}", 935 | "consumerSecret": "{{consumer_secret}}", 936 | "token": "{{token}}", 937 | "tokenSecret": "{{token_secret}}", 938 | "signatureMethod": "HMAC-SHA1", 939 | "timestamp": 1499860097, 940 | "nonce": "OOVu6c", 941 | "version": "1.0A", 942 | "realm": "", 943 | "addParamsToHeader": false, 944 | "addEmptyParamsToSign": false 945 | } 946 | }, 947 | "url": { 948 | "raw": "{{host}}/lists/:id", 949 | "host": [ 950 | "{{host}}" 951 | ], 952 | "path": [ 953 | "lists", 954 | ":id" 955 | ], 956 | "query": [], 957 | "variable": [ 958 | { 959 | "key": "id", 960 | "value": "" 961 | } 962 | ] 963 | }, 964 | "method": "GET", 965 | "header": [], 966 | "body": {}, 967 | "description": "" 968 | }, 969 | "response": [] 970 | }, 971 | { 972 | "name": "/cards/:id/stickers", 973 | "request": { 974 | "auth": { 975 | "type": "oauth1", 976 | "oauth1": { 977 | "consumerKey": "{{consumer_key}}", 978 | "consumerSecret": "{{consumer_secret}}", 979 | "token": "{{token}}", 980 | "tokenSecret": "{{token_secret}}", 981 | "signatureMethod": "HMAC-SHA1", 982 | "timestamp": 1499860097, 983 | "nonce": "OOVu6c", 984 | "version": "1.0A", 985 | "realm": "", 986 | "addParamsToHeader": false, 987 | "addEmptyParamsToSign": false 988 | } 989 | }, 990 | "url": { 991 | "raw": "{{host}}/cards/:id/stickers", 992 | "host": [ 993 | "{{host}}" 994 | ], 995 | "path": [ 996 | "cards", 997 | ":id", 998 | "stickers" 999 | ], 1000 | "query": [], 1001 | "variable": [ 1002 | { 1003 | "key": "id", 1004 | "value": "" 1005 | } 1006 | ] 1007 | }, 1008 | "method": "GET", 1009 | "header": [], 1010 | "body": {}, 1011 | "description": "" 1012 | }, 1013 | "response": [] 1014 | }, 1015 | { 1016 | "name": "/lists/:id/actions", 1017 | "request": { 1018 | "auth": { 1019 | "type": "oauth1", 1020 | "oauth1": { 1021 | "consumerKey": "{{consumer_key}}", 1022 | "consumerSecret": "{{consumer_secret}}", 1023 | "token": "{{token}}", 1024 | "tokenSecret": "{{token_secret}}", 1025 | "signatureMethod": "HMAC-SHA1", 1026 | "timestamp": 1499860097, 1027 | "nonce": "OOVu6c", 1028 | "version": "1.0A", 1029 | "realm": "", 1030 | "addParamsToHeader": false, 1031 | "addEmptyParamsToSign": false 1032 | } 1033 | }, 1034 | "url": { 1035 | "raw": "{{host}}/lists/:id/actions", 1036 | "host": [ 1037 | "{{host}}" 1038 | ], 1039 | "path": [ 1040 | "lists", 1041 | ":id", 1042 | "actions" 1043 | ], 1044 | "query": [], 1045 | "variable": [ 1046 | { 1047 | "key": "id", 1048 | "value": "" 1049 | } 1050 | ] 1051 | }, 1052 | "method": "GET", 1053 | "header": [], 1054 | "body": {}, 1055 | "description": "" 1056 | }, 1057 | "response": [] 1058 | }, 1059 | { 1060 | "name": "/lists/:id/board", 1061 | "request": { 1062 | "auth": { 1063 | "type": "oauth1", 1064 | "oauth1": { 1065 | "consumerKey": "{{consumer_key}}", 1066 | "consumerSecret": "{{consumer_secret}}", 1067 | "token": "{{token}}", 1068 | "tokenSecret": "{{token_secret}}", 1069 | "signatureMethod": "HMAC-SHA1", 1070 | "timestamp": 1499860097, 1071 | "nonce": "OOVu6c", 1072 | "version": "1.0A", 1073 | "realm": "", 1074 | "addParamsToHeader": false, 1075 | "addEmptyParamsToSign": false 1076 | } 1077 | }, 1078 | "url": { 1079 | "raw": "{{host}}/lists/:id/board", 1080 | "host": [ 1081 | "{{host}}" 1082 | ], 1083 | "path": [ 1084 | "lists", 1085 | ":id", 1086 | "board" 1087 | ], 1088 | "query": [], 1089 | "variable": [ 1090 | { 1091 | "key": "id", 1092 | "value": "" 1093 | } 1094 | ] 1095 | }, 1096 | "method": "GET", 1097 | "header": [], 1098 | "body": {}, 1099 | "description": "" 1100 | }, 1101 | "response": [] 1102 | }, 1103 | { 1104 | "name": "/lists/:id/cards", 1105 | "request": { 1106 | "auth": { 1107 | "type": "oauth1", 1108 | "oauth1": { 1109 | "consumerKey": "{{consumer_key}}", 1110 | "consumerSecret": "{{consumer_secret}}", 1111 | "token": "{{token}}", 1112 | "tokenSecret": "{{token_secret}}", 1113 | "signatureMethod": "HMAC-SHA1", 1114 | "timestamp": 1499860097, 1115 | "nonce": "OOVu6c", 1116 | "version": "1.0A", 1117 | "realm": "", 1118 | "addParamsToHeader": false, 1119 | "addEmptyParamsToSign": false 1120 | } 1121 | }, 1122 | "url": { 1123 | "raw": "{{host}}/lists/:id/cards", 1124 | "host": [ 1125 | "{{host}}" 1126 | ], 1127 | "path": [ 1128 | "lists", 1129 | ":id", 1130 | "cards" 1131 | ], 1132 | "query": [], 1133 | "variable": [ 1134 | { 1135 | "key": "id", 1136 | "value": "" 1137 | } 1138 | ] 1139 | }, 1140 | "method": "GET", 1141 | "header": [], 1142 | "body": {}, 1143 | "description": "" 1144 | }, 1145 | "response": [] 1146 | }, 1147 | { 1148 | "name": "/lists/:id", 1149 | "request": { 1150 | "auth": { 1151 | "type": "oauth1", 1152 | "oauth1": { 1153 | "consumerKey": "{{consumer_key}}", 1154 | "consumerSecret": "{{consumer_secret}}", 1155 | "token": "{{token}}", 1156 | "tokenSecret": "{{token_secret}}", 1157 | "signatureMethod": "HMAC-SHA1", 1158 | "timestamp": 1499860097, 1159 | "nonce": "OOVu6c", 1160 | "version": "1.0A", 1161 | "realm": "", 1162 | "addParamsToHeader": false, 1163 | "addEmptyParamsToSign": false 1164 | } 1165 | }, 1166 | "url": { 1167 | "raw": "{{host}}/lists/:id", 1168 | "host": [ 1169 | "{{host}}" 1170 | ], 1171 | "path": [ 1172 | "lists", 1173 | ":id" 1174 | ], 1175 | "query": [], 1176 | "variable": [ 1177 | { 1178 | "key": "id", 1179 | "value": "" 1180 | } 1181 | ] 1182 | }, 1183 | "method": "PUT", 1184 | "header": [ 1185 | { 1186 | "key": "Content-Type", 1187 | "value": "application/json", 1188 | "description": "" 1189 | } 1190 | ], 1191 | "body": { 1192 | "mode": "raw", 1193 | "raw": "{\n \"name\": \"put in this JSON only the fields you want to update\"\n}" 1194 | }, 1195 | "description": "" 1196 | }, 1197 | "response": [] 1198 | }, 1199 | { 1200 | "name": "/lists", 1201 | "request": { 1202 | "auth": { 1203 | "type": "oauth1", 1204 | "oauth1": { 1205 | "consumerKey": "{{consumer_key}}", 1206 | "consumerSecret": "{{consumer_secret}}", 1207 | "token": "{{token}}", 1208 | "tokenSecret": "{{token_secret}}", 1209 | "signatureMethod": "HMAC-SHA1", 1210 | "timestamp": 1499860097, 1211 | "nonce": "OOVu6c", 1212 | "version": "1.0A", 1213 | "realm": "", 1214 | "addParamsToHeader": false, 1215 | "addEmptyParamsToSign": false 1216 | } 1217 | }, 1218 | "url": "{{host}}/lists", 1219 | "method": "POST", 1220 | "header": [ 1221 | { 1222 | "key": "Content-Type", 1223 | "value": "application/json", 1224 | "description": "" 1225 | } 1226 | ], 1227 | "body": { 1228 | "mode": "raw", 1229 | "raw": "{\n \"name\": \"List name\",\n \"idBoard\": \"{{BOARD_ID}}\"\n}" 1230 | }, 1231 | "description": "" 1232 | }, 1233 | "response": [] 1234 | } 1235 | ] 1236 | }, 1237 | { 1238 | "name": "members", 1239 | "description": "", 1240 | "item": [ 1241 | { 1242 | "name": "/members/me", 1243 | "request": { 1244 | "auth": { 1245 | "type": "oauth1", 1246 | "oauth1": { 1247 | "consumerKey": "{{consumer_key}}", 1248 | "consumerSecret": "{{consumer_secret}}", 1249 | "token": "{{token}}", 1250 | "tokenSecret": "{{token_secret}}", 1251 | "signatureMethod": "HMAC-SHA1", 1252 | "timestamp": 1499860097, 1253 | "nonce": "OOVu6c", 1254 | "version": "1.0A", 1255 | "realm": "", 1256 | "addParamsToHeader": false, 1257 | "addEmptyParamsToSign": false 1258 | } 1259 | }, 1260 | "url": "{{host}}/members/me", 1261 | "method": "GET", 1262 | "header": [], 1263 | "body": {}, 1264 | "description": "" 1265 | }, 1266 | "response": [] 1267 | }, 1268 | { 1269 | "name": "/members/:userIdOrName", 1270 | "request": { 1271 | "auth": { 1272 | "type": "oauth1", 1273 | "oauth1": { 1274 | "consumerKey": "{{consumer_key}}", 1275 | "consumerSecret": "{{consumer_secret}}", 1276 | "token": "{{token}}", 1277 | "tokenSecret": "{{token_secret}}", 1278 | "signatureMethod": "HMAC-SHA1", 1279 | "timestamp": 1499860097, 1280 | "nonce": "OOVu6c", 1281 | "version": "1.0A", 1282 | "realm": "", 1283 | "addParamsToHeader": false, 1284 | "addEmptyParamsToSign": false 1285 | } 1286 | }, 1287 | "url": { 1288 | "raw": "{{host}}/members/:userIdOrName", 1289 | "host": [ 1290 | "{{host}}" 1291 | ], 1292 | "path": [ 1293 | "members", 1294 | ":userIdOrName" 1295 | ], 1296 | "query": [], 1297 | "variable": [ 1298 | { 1299 | "key": "userIdOrName", 1300 | "value": "" 1301 | } 1302 | ] 1303 | }, 1304 | "method": "GET", 1305 | "header": [], 1306 | "body": {}, 1307 | "description": "" 1308 | }, 1309 | "response": [] 1310 | }, 1311 | { 1312 | "name": "/members/:id/actions", 1313 | "request": { 1314 | "auth": { 1315 | "type": "oauth1", 1316 | "oauth1": { 1317 | "consumerKey": "{{consumer_key}}", 1318 | "consumerSecret": "{{consumer_secret}}", 1319 | "token": "{{token}}", 1320 | "tokenSecret": "{{token_secret}}", 1321 | "signatureMethod": "HMAC-SHA1", 1322 | "timestamp": 1499860097, 1323 | "nonce": "OOVu6c", 1324 | "version": "1.0A", 1325 | "realm": "", 1326 | "addParamsToHeader": false, 1327 | "addEmptyParamsToSign": false 1328 | } 1329 | }, 1330 | "url": { 1331 | "raw": "{{host}}/members/:id/actions", 1332 | "host": [ 1333 | "{{host}}" 1334 | ], 1335 | "path": [ 1336 | "members", 1337 | ":id", 1338 | "actions" 1339 | ], 1340 | "query": [], 1341 | "variable": [ 1342 | { 1343 | "key": "id", 1344 | "value": "" 1345 | } 1346 | ] 1347 | }, 1348 | "method": "GET", 1349 | "header": [], 1350 | "body": {}, 1351 | "description": "" 1352 | }, 1353 | "response": [] 1354 | }, 1355 | { 1356 | "name": "/members/:id/boards", 1357 | "request": { 1358 | "auth": { 1359 | "type": "oauth1", 1360 | "oauth1": { 1361 | "consumerKey": "{{consumer_key}}", 1362 | "consumerSecret": "{{consumer_secret}}", 1363 | "token": "{{token}}", 1364 | "tokenSecret": "{{token_secret}}", 1365 | "signatureMethod": "HMAC-SHA1", 1366 | "timestamp": 1499860097, 1367 | "nonce": "OOVu6c", 1368 | "version": "1.0A", 1369 | "realm": "", 1370 | "addParamsToHeader": false, 1371 | "addEmptyParamsToSign": false 1372 | } 1373 | }, 1374 | "url": { 1375 | "raw": "{{host}}/members/:id/boards", 1376 | "host": [ 1377 | "{{host}}" 1378 | ], 1379 | "path": [ 1380 | "members", 1381 | ":id", 1382 | "boards" 1383 | ], 1384 | "query": [], 1385 | "variable": [ 1386 | { 1387 | "key": "id", 1388 | "value": "" 1389 | } 1390 | ] 1391 | }, 1392 | "method": "GET", 1393 | "header": [], 1394 | "body": {}, 1395 | "description": "" 1396 | }, 1397 | "response": [] 1398 | }, 1399 | { 1400 | "name": "/members/:id/cards", 1401 | "request": { 1402 | "auth": { 1403 | "type": "oauth1", 1404 | "oauth1": { 1405 | "consumerKey": "{{consumer_key}}", 1406 | "consumerSecret": "{{consumer_secret}}", 1407 | "token": "{{token}}", 1408 | "tokenSecret": "{{token_secret}}", 1409 | "signatureMethod": "HMAC-SHA1", 1410 | "timestamp": 1499860097, 1411 | "nonce": "OOVu6c", 1412 | "version": "1.0A", 1413 | "realm": "", 1414 | "addParamsToHeader": false, 1415 | "addEmptyParamsToSign": false 1416 | } 1417 | }, 1418 | "url": { 1419 | "raw": "{{host}}/members/:id/cards", 1420 | "host": [ 1421 | "{{host}}" 1422 | ], 1423 | "path": [ 1424 | "members", 1425 | ":id", 1426 | "cards" 1427 | ], 1428 | "query": [], 1429 | "variable": [ 1430 | { 1431 | "key": "id", 1432 | "value": "" 1433 | } 1434 | ] 1435 | }, 1436 | "method": "GET", 1437 | "header": [], 1438 | "body": {}, 1439 | "description": "" 1440 | }, 1441 | "response": [] 1442 | }, 1443 | { 1444 | "name": "/members/:id/notifications", 1445 | "request": { 1446 | "auth": { 1447 | "type": "oauth1", 1448 | "oauth1": { 1449 | "consumerKey": "{{consumer_key}}", 1450 | "consumerSecret": "{{consumer_secret}}", 1451 | "token": "{{token}}", 1452 | "tokenSecret": "{{token_secret}}", 1453 | "signatureMethod": "HMAC-SHA1", 1454 | "timestamp": 1499860097, 1455 | "nonce": "OOVu6c", 1456 | "version": "1.0A", 1457 | "realm": "", 1458 | "addParamsToHeader": false, 1459 | "addEmptyParamsToSign": false 1460 | } 1461 | }, 1462 | "url": { 1463 | "raw": "{{host}}/members/:id/notifications", 1464 | "host": [ 1465 | "{{host}}" 1466 | ], 1467 | "path": [ 1468 | "members", 1469 | ":id", 1470 | "notifications" 1471 | ], 1472 | "query": [], 1473 | "variable": [ 1474 | { 1475 | "key": "id", 1476 | "value": "" 1477 | } 1478 | ] 1479 | }, 1480 | "method": "GET", 1481 | "header": [], 1482 | "body": {}, 1483 | "description": "" 1484 | }, 1485 | "response": [] 1486 | }, 1487 | { 1488 | "name": "/members/:id/organizations", 1489 | "request": { 1490 | "auth": { 1491 | "type": "oauth1", 1492 | "oauth1": { 1493 | "consumerKey": "{{consumer_key}}", 1494 | "consumerSecret": "{{consumer_secret}}", 1495 | "token": "{{token}}", 1496 | "tokenSecret": "{{token_secret}}", 1497 | "signatureMethod": "HMAC-SHA1", 1498 | "timestamp": 1499860097, 1499 | "nonce": "OOVu6c", 1500 | "version": "1.0A", 1501 | "realm": "", 1502 | "addParamsToHeader": false, 1503 | "addEmptyParamsToSign": false 1504 | } 1505 | }, 1506 | "url": { 1507 | "raw": "{{host}}/members/:id/organizations", 1508 | "host": [ 1509 | "{{host}}" 1510 | ], 1511 | "path": [ 1512 | "members", 1513 | ":id", 1514 | "organizations" 1515 | ], 1516 | "query": [], 1517 | "variable": [ 1518 | { 1519 | "key": "id", 1520 | "value": "" 1521 | } 1522 | ] 1523 | }, 1524 | "method": "GET", 1525 | "header": [], 1526 | "body": {}, 1527 | "description": "" 1528 | }, 1529 | "response": [] 1530 | }, 1531 | { 1532 | "name": "/members/:id/tokens", 1533 | "request": { 1534 | "auth": { 1535 | "type": "oauth1", 1536 | "oauth1": { 1537 | "consumerKey": "{{consumer_key}}", 1538 | "consumerSecret": "{{consumer_secret}}", 1539 | "token": "{{token}}", 1540 | "tokenSecret": "{{token_secret}}", 1541 | "signatureMethod": "HMAC-SHA1", 1542 | "timestamp": 1499860097, 1543 | "nonce": "OOVu6c", 1544 | "version": "1.0A", 1545 | "realm": "", 1546 | "addParamsToHeader": false, 1547 | "addEmptyParamsToSign": false 1548 | } 1549 | }, 1550 | "url": { 1551 | "raw": "{{host}}/members/:id/tokens", 1552 | "host": [ 1553 | "{{host}}" 1554 | ], 1555 | "path": [ 1556 | "members", 1557 | ":id", 1558 | "tokens" 1559 | ], 1560 | "query": [], 1561 | "variable": [ 1562 | { 1563 | "key": "id", 1564 | "value": "" 1565 | } 1566 | ] 1567 | }, 1568 | "method": "GET", 1569 | "header": [], 1570 | "body": {}, 1571 | "description": "" 1572 | }, 1573 | "response": [] 1574 | } 1575 | ] 1576 | }, 1577 | { 1578 | "name": "tokens", 1579 | "description": "", 1580 | "item": [ 1581 | { 1582 | "name": "/tokens/:token", 1583 | "request": { 1584 | "auth": { 1585 | "type": "oauth1", 1586 | "oauth1": { 1587 | "consumerKey": "{{consumer_key}}", 1588 | "consumerSecret": "{{consumer_secret}}", 1589 | "token": "{{token}}", 1590 | "tokenSecret": "{{token_secret}}", 1591 | "signatureMethod": "HMAC-SHA1", 1592 | "timestamp": 1499860097, 1593 | "nonce": "OOVu6c", 1594 | "version": "1.0A", 1595 | "realm": "", 1596 | "addParamsToHeader": false, 1597 | "addEmptyParamsToSign": false 1598 | } 1599 | }, 1600 | "url": { 1601 | "raw": "{{host}}/tokens/:token", 1602 | "host": [ 1603 | "{{host}}" 1604 | ], 1605 | "path": [ 1606 | "tokens", 1607 | ":token" 1608 | ], 1609 | "query": [], 1610 | "variable": [ 1611 | { 1612 | "key": "token", 1613 | "value": "" 1614 | } 1615 | ] 1616 | }, 1617 | "method": "GET", 1618 | "header": [], 1619 | "body": {}, 1620 | "description": "" 1621 | }, 1622 | "response": [] 1623 | }, 1624 | { 1625 | "name": "/tokens/:token/webhooks", 1626 | "request": { 1627 | "auth": { 1628 | "type": "oauth1", 1629 | "oauth1": { 1630 | "consumerKey": "{{consumer_key}}", 1631 | "consumerSecret": "{{consumer_secret}}", 1632 | "token": "{{token}}", 1633 | "tokenSecret": "{{token_secret}}", 1634 | "signatureMethod": "HMAC-SHA1", 1635 | "timestamp": 1499860097, 1636 | "nonce": "OOVu6c", 1637 | "version": "1.0A", 1638 | "realm": "", 1639 | "addParamsToHeader": false, 1640 | "addEmptyParamsToSign": false 1641 | } 1642 | }, 1643 | "url": { 1644 | "raw": "{{host}}/tokens/:token/webhooks", 1645 | "host": [ 1646 | "{{host}}" 1647 | ], 1648 | "path": [ 1649 | "tokens", 1650 | ":token", 1651 | "webhooks" 1652 | ], 1653 | "query": [], 1654 | "variable": [ 1655 | { 1656 | "key": "token", 1657 | "value": "" 1658 | } 1659 | ] 1660 | }, 1661 | "method": "GET", 1662 | "header": [], 1663 | "body": {}, 1664 | "description": "Get all webhooks for token" 1665 | }, 1666 | "response": [] 1667 | } 1668 | ] 1669 | }, 1670 | { 1671 | "name": "webhooks", 1672 | "description": "", 1673 | "item": [ 1674 | { 1675 | "name": "/webhooks/:webhookId", 1676 | "request": { 1677 | "auth": { 1678 | "type": "oauth1", 1679 | "oauth1": { 1680 | "consumerKey": "{{consumer_key}}", 1681 | "consumerSecret": "{{consumer_secret}}", 1682 | "token": "{{token}}", 1683 | "tokenSecret": "{{token_secret}}", 1684 | "signatureMethod": "HMAC-SHA1", 1685 | "timestamp": 1499860097, 1686 | "nonce": "OOVu6c", 1687 | "version": "1.0A", 1688 | "realm": "", 1689 | "addParamsToHeader": false, 1690 | "addEmptyParamsToSign": false 1691 | } 1692 | }, 1693 | "url": { 1694 | "raw": "{{host}}/webhooks/:webhookId", 1695 | "host": [ 1696 | "{{host}}" 1697 | ], 1698 | "path": [ 1699 | "webhooks", 1700 | ":webhookId" 1701 | ], 1702 | "query": [], 1703 | "variable": [ 1704 | { 1705 | "key": "webhookId", 1706 | "value": "" 1707 | } 1708 | ] 1709 | }, 1710 | "method": "GET", 1711 | "header": [], 1712 | "body": {}, 1713 | "description": "" 1714 | }, 1715 | "response": [] 1716 | }, 1717 | { 1718 | "name": "/webhooks", 1719 | "request": { 1720 | "auth": { 1721 | "type": "oauth1", 1722 | "oauth1": { 1723 | "consumerKey": "{{consumer_key}}", 1724 | "consumerSecret": "{{consumer_secret}}", 1725 | "token": "{{token}}", 1726 | "tokenSecret": "{{token_secret}}", 1727 | "signatureMethod": "HMAC-SHA1", 1728 | "timestamp": 1499860097, 1729 | "nonce": "OOVu6c", 1730 | "version": "1.0A", 1731 | "realm": "", 1732 | "addParamsToHeader": false, 1733 | "addEmptyParamsToSign": false 1734 | } 1735 | }, 1736 | "url": "{{host}}/webhooks", 1737 | "method": "PUT", 1738 | "header": [ 1739 | { 1740 | "key": "Content-Type", 1741 | "value": "application/json", 1742 | "description": "" 1743 | } 1744 | ], 1745 | "body": { 1746 | "mode": "raw", 1747 | "raw": "{\n \"callbackURL\": \"{{URL}}\",\n \"idModel\": \"{{MODEL_ID}}\"\n}" 1748 | }, 1749 | "description": "" 1750 | }, 1751 | "response": [] 1752 | }, 1753 | { 1754 | "name": "/webhooks/:webhookId", 1755 | "request": { 1756 | "auth": { 1757 | "type": "oauth1", 1758 | "oauth1": { 1759 | "consumerKey": "{{consumer_key}}", 1760 | "consumerSecret": "{{consumer_secret}}", 1761 | "token": "{{token}}", 1762 | "tokenSecret": "{{token_secret}}", 1763 | "signatureMethod": "HMAC-SHA1", 1764 | "timestamp": 1499860097, 1765 | "nonce": "OOVu6c", 1766 | "version": "1.0A", 1767 | "realm": "", 1768 | "addParamsToHeader": false, 1769 | "addEmptyParamsToSign": false 1770 | } 1771 | }, 1772 | "url": { 1773 | "raw": "{{host}}/webhooks/:webhookId", 1774 | "host": [ 1775 | "{{host}}" 1776 | ], 1777 | "path": [ 1778 | "webhooks", 1779 | ":webhookId" 1780 | ], 1781 | "query": [], 1782 | "variable": [ 1783 | { 1784 | "key": "webhookId", 1785 | "value": "" 1786 | } 1787 | ] 1788 | }, 1789 | "method": "DELETE", 1790 | "header": [], 1791 | "body": {}, 1792 | "description": "" 1793 | }, 1794 | "response": [] 1795 | } 1796 | ] 1797 | } 1798 | ] 1799 | } --------------------------------------------------------------------------------