Public
Documentation Settings

Product_9.8

GETGet Product

https://am-ce98c.corrigo.com/api/v1/base/Product?ID=1
AUTHORIZATIONOAuth 2.0
HEADERS
CompanyName

RDC CE SandBox

PARAMS
ID

1

Example Request
curl
curl --location 'https://am-ce98c.corrigo.com//api/v1/base/Product?ID=1' \
--header 'CompanyName: RDC CE SandBox'
200 OK
Example Response
json
{
  "Data": {
    "DisplayAs": "Element HENNY PENNY_ARB (deleted)",
    "PartName": "00010",
    "Description": "Element HENNY PENNY_NEW",
    "Discontinued": false,
    "UnitOfMeasureId": "Unit",
    "Comments": "",
    "Manufacturer": "HENNY PENNY",
    "PartNumber": "Product-D1",
    "ScanCode": "",
    "Category": {
      "Id": 259
    },
    "IsRemoved": true,
    "ConcurrencyId": 2,
    "Id": 1
  }
}
Cache-Control

no-cache

Pragma

no-cache

Content-Type

application/json; charset=utf-8

Expires

-1

Date

Tue, 08 Mar 2022 07:33:17 GMT

Content-Length

310

Strict-Transport-Security

max-age=31536000; includeSubDomains

DELETEDelete Product

https://am-ce98c.corrigo.com/api/v1/base/Product?ID=1
AUTHORIZATIONOAuth 2.0
HEADERS
CompanyName

RDC CE Sandbox

PARAMS
ID

1

Example Request
curl
curl --location --request DELETE 'https://am-ce98c.corrigo.com//api/v1/base/Product?ID=1' \
--header 'CompanyName: RDC CE Sandbox'
200 OK
Example Response
json
{
  "EntitySpecifier": {
    "EntityType": "Product",
    "Id": 1
  }
}
Cache-Control

no-cache

Pragma

no-cache

Content-Type

application/json; charset=utf-8

Expires

-1

Date

Tue, 08 Mar 2022 07:33:42 GMT

Content-Length

51

Strict-Transport-Security

max-age=31536000; includeSubDomains

POSTPost Product

https://am-ce98c.corrigo.com//api/v1/base/Product
AUTHORIZATIONOAuth 2.0
HEADERS
CompanyName

RDC CE Sandbox

Bodyraw (json)
json
{
    "Entity":{
        "DisplayAs": "Element HENNY PENNY_ARB31",
        "PartName": "00010",
        "Description": "Element HENNY PENNY_NEW",
        "Discontinued": false,
        "UnitOfMeasureId": "Unit",
        "Comments": "",
        "Manufacturer": "HENNY PENNY",
        "PartNumber": "Product-D1",
        "ScanCode": "",
        "Category": {
            "IsRemoved": false,
            "ConcurrencyId": 0,
            "Id": 259,
            "PerformDeletion": false,
            "IsNew": false
        },
        "Suppliers": [],
        "CustomFields": [],
        "Currencies": [],
        "IsRemoved": false,
        "ConcurrencyId": 1,
        "Id": 0,
        "PerformDeletion": false,
        "IsNew": false
    }
}
Example Request
curl
curl --location 'https://am-ce98c.corrigo.com//api/v1/base/Product' \
--header 'CompanyName: RDC CE Sandbox' \
--data '{
    "Entity":{
        "DisplayAs": "Element HENNY PENNY_ARB31",
        "PartName": "00010",
        "Description": "Element HENNY PENNY_NEW",
        "Discontinued": false,
        "UnitOfMeasureId": "Unit",
        "Comments": "",
        "Manufacturer": "HENNY PENNY",
        "PartNumber": "Product-D1",
        "ScanCode": "",
        "Category": {
            "IsRemoved": false,
            "ConcurrencyId": 0,
            "Id": 259,
            "PerformDeletion": false,
            "IsNew": false
        },
        "Suppliers": [],
        "CustomFields": [],
        "Currencies": [],
        "IsRemoved": false,
        "ConcurrencyId": 1,
        "Id": 0,
        "PerformDeletion": false,
        "IsNew": false
    }
}'
200 OK
Example Response
json
{
  "EntitySpecifier": {
    "ConcurrencyId": 1,
    "EntityType": "Product",
    "Id": 9
  }
}
Cache-Control

no-cache

Pragma

no-cache

Content-Type

application/json; charset=utf-8

Expires

-1

Date

Tue, 08 Mar 2022 07:34:16 GMT

Content-Length

69

Strict-Transport-Security

max-age=31536000; includeSubDomains

PUTPut Product

https://am-ce98c.corrigo.com//api/v1/base/Product
AUTHORIZATIONOAuth 2.0
HEADERS
CompanyName

RDC CE Sandbox

Bodyraw (json)
json
{
    "Properties" : ["*"] ,
                "Entity": {
        "DisplayAs": "Element HENNY PENNY_ARB",
        "PartName": "00010",
        "Description": "Element HENNY PENNY_Edit",
        "Discontinued": false,
        "UnitOfMeasureId": "Unit",
        "Comments": "",
        "Manufacturer": "HENNY PENNY",
        "PartNumber": "Product-D1",
        "ScanCode": "",
        "Category": {
            "IsRemoved": false,
            "ConcurrencyId": 0,
            "Id": 259,
            "PerformDeletion": false,
            "IsNew": false
        },
        "Suppliers": [],
        "CustomFields": [],
        "Currencies": [],
        "IsRemoved": false,
        "ConcurrencyId": 1,
        "Id": 3,
        "PerformDeletion": false,
        "IsNew": false
                }
                
}
Example Request
curl
curl --location --request PUT 'https://am-ce98c.corrigo.com//api/v1/base/Product' \
--header 'CompanyName: RDC CE Sandbox' \
--data '{
    "Properties" : ["*"] ,
                "Entity": {
        "DisplayAs": "Element HENNY PENNY_ARB",
        "PartName": "00010",
        "Description": "Element HENNY PENNY_Edit",
        "Discontinued": false,
        "UnitOfMeasureId": "Unit",
        "Comments": "",
        "Manufacturer": "HENNY PENNY",
        "PartNumber": "Product-D1",
        "ScanCode": "",
        "Category": {
            "IsRemoved": false,
            "ConcurrencyId": 0,
            "Id": 259,
            "PerformDeletion": false,
            "IsNew": false
        },
        "Suppliers": [],
        "CustomFields": [],
        "Currencies": [],
        "IsRemoved": false,
        "ConcurrencyId": 1,
        "Id": 3,
        "PerformDeletion": false,
        "IsNew": false
                }
                
}'
200 OK
Example Response
json
{
  "EntitySpecifier": {
    "ConcurrencyId": 2,
    "EntityType": "Product",
    "Id": 3
  }
}
Cache-Control

no-cache

Pragma

no-cache

Content-Type

application/json; charset=utf-8

Expires

-1

Date

Tue, 08 Mar 2022 07:34:35 GMT

Content-Length

69

Strict-Transport-Security

max-age=31536000; includeSubDomains