Advertisement
Kool_Cool

http://localhost:8080/contractors/john-doe

May 8th, 2024
143
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 4.63 KB | None | 0 0
  1. // http://localhost:8080/contractors/john-doe
  2. {
  3.     "Id": 1,
  4.     "Firstname": "John",
  5.     "Lastname": "Doe",
  6.     "City": "New York",
  7.     "State": "NY",
  8.     "Mobile": "1234567890",
  9.     "Email": "[email protected]",
  10.     "Slug": "john-doe",
  11.     "Pincode": "10001",
  12.     "Verified": true,
  13.     "Active": true,
  14.     "Display": true,
  15.     "Furniture": [
  16.         {
  17.             "Id": 1,
  18.             "FurnitureType": {
  19.                 "Id": 1,
  20.                 "Name": "",
  21.                 "Slug": "",
  22.                 "Display": false
  23.             },
  24.             "RoomType": {
  25.                 "Id": 1,
  26.                 "Name": "",
  27.                 "Slug": "",
  28.                 "Display": false
  29.             },
  30.             "Name": "Wooden Chair",
  31.             "Description": "A comfortable wooden chair.",
  32.             "Dimensions": "20x20x30",
  33.             "Price": 49.99,
  34.             "Contractor": {
  35.                 "Id": 1,
  36.                 "Firstname": "John",
  37.                 "Lastname": "Doe",
  38.                 "City": "New York",
  39.                 "State": "NY",
  40.                 "Mobile": "1234567890",
  41.                 "Email": "[email protected]",
  42.                 "Slug": "john-doe",
  43.                 "Pincode": "10001",
  44.                 "Verified": true,
  45.                 "Active": true,
  46.                 "Display": true,
  47.                 "Furniture": null,
  48.                 "Project": null
  49.             },
  50.             "Slug": "wooden-chair",
  51.             "Display": true,
  52.             "FurnitureColor": null,
  53.             "FurnitureMaterial": null,
  54.             "FurnitureImage": null,
  55.             "contractor_id": 0
  56.         },
  57.         {
  58.             "Id": 4,
  59.             "FurnitureType": {
  60.                 "Id": 4,
  61.                 "Name": "",
  62.                 "Slug": "",
  63.                 "Display": false
  64.             },
  65.             "RoomType": {
  66.                 "Id": 4,
  67.                 "Name": "",
  68.                 "Slug": "",
  69.                 "Display": false
  70.             },
  71.             "Name": "Wooden Desk",
  72.             "Description": "A large wooden desk.",
  73.             "Dimensions": "50x50x30",
  74.             "Price": 149.99,
  75.             "Contractor": {
  76.                 "Id": 1,
  77.                 "Firstname": "John",
  78.                 "Lastname": "Doe",
  79.                 "City": "New York",
  80.                 "State": "NY",
  81.                 "Mobile": "1234567890",
  82.                 "Email": "[email protected]",
  83.                 "Slug": "john-doe",
  84.                 "Pincode": "10001",
  85.                 "Verified": true,
  86.                 "Active": true,
  87.                 "Display": true,
  88.                 "Furniture": null,
  89.                 "Project": null
  90.             },
  91.             "Slug": "wooden-desk",
  92.             "Display": true,
  93.             "FurnitureColor": null,
  94.             "FurnitureMaterial": null,
  95.             "FurnitureImage": null,
  96.             "contractor_id": 0
  97.         }
  98.     ],
  99.     "Project": [
  100.         {
  101.             "Id": 1,
  102.             "ProjectName": "Home Renovation",
  103.             "Description": "Complete home renovation project.",
  104.             "City": "New York",
  105.             "Slug": "home-renovation",
  106.             "Display": true,
  107.             "Contractor": {
  108.                 "Id": 1,
  109.                 "Firstname": "John",
  110.                 "Lastname": "Doe",
  111.                 "City": "New York",
  112.                 "State": "NY",
  113.                 "Mobile": "1234567890",
  114.                 "Email": "[email protected]",
  115.                 "Slug": "john-doe",
  116.                 "Pincode": "10001",
  117.                 "Verified": true,
  118.                 "Active": true,
  119.                 "Display": true,
  120.                 "Furniture": null,
  121.                 "Project": null
  122.             },
  123.             "ProjectImage": null,
  124.             "contractor_id": 0
  125.         },
  126.         {
  127.             "Id": 4,
  128.             "ProjectName": "Bathroom Update",
  129.             "Description": "Complete bathroom update project.",
  130.             "City": "Houston",
  131.             "Slug": "bathroom-update",
  132.             "Display": true,
  133.             "Contractor": {
  134.                 "Id": 1,
  135.                 "Firstname": "John",
  136.                 "Lastname": "Doe",
  137.                 "City": "New York",
  138.                 "State": "NY",
  139.                 "Mobile": "1234567890",
  140.                 "Email": "[email protected]",
  141.                 "Slug": "john-doe",
  142.                 "Pincode": "10001",
  143.                 "Verified": true,
  144.                 "Active": true,
  145.                 "Display": true,
  146.                 "Furniture": null,
  147.                 "Project": null
  148.             },
  149.             "ProjectImage": null,
  150.             "contractor_id": 0
  151.         }
  152.     ]
  153. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement