Product Offering Price Use Cases
I want to | Request Type | Example URL |
---|---|---|
Retrieve and display details of a requested product offering price. | GET by ID | {https NOTE: For invalid category ID, you will receive HTTP 404 error. |
Based on the provided field values, retrieve and display details of a particular product offering ID. | GET by ID and Fields | {https |
List all the product offering prices present in the system. | GET List | {https |
List all the product offering prices present in the system based on the provided field values. | GET List with Fields | {https |
List all the product offering prices present in the inventory based on the provided field values and filter applied. | GET List by Fields and Filtering | {https |
Limit the number of product offering prices to a maximum of specified limit and display results from the page specified by an offset. | GET List by limit and offset | {https |
Create a product offering price. | POST | {https |
Update a product offering price. | PATCH | {https |
Delete a product offering price. | DELETE | {https |
Consider you want to retrieve details of a product offering price from the inventory. For example, product offering price ID = ab5f8d7a-b852-cce1-fe27-9b2ea7742f6c.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice/ab5f8d7a-b852-cce1-fe27-9b2ea7742f6c
Consider for the product offering price ID = 6c059da5-6be5-6a8b-08f9-422beec29e55, you want to retrieve details of the id
, name
and lifecycleStatus
details in the output.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice/6c059da5-6be5-6a8b-08f9-422beec29e55?fields=id,name,lifecycleStatus
Consider you want to retrieve details of all the product offering prices in the inventory.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice
Consider you want to retrieve all the product offering prices by applying the requested fields.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice?fields=id,name,lifecycleStatus
Consider you want to retrieve all the product offering prices by a specified filter.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice?lifecycleStatus=false&fields=id,lifecycleStatus
Consider you want to retrieve perform the following.
- Limit the number of product offering prices to a maximum of specified limit
- Display results from the page specified by an offset
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice?offset=1&limit=2
Consider you want to create a new product offering price.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/vlocity_cmt/tmforum/productopenapi/v1/productOfferingPrice
Consider for the product offering price ID = 4a5dbea2-6c43-4a63-8b8a-cde4b5085c57 you want to update first level attributes and sub-resources.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/{namespace}/tmforum/productopenapi/v1/productOfferingPrice/4a5dbea2-6c43-4a63-8b8a-cde4b5085c57
Consider you want to delete a product offering price ID: 3830.
https://vlocity-1f5-dev-ed.develop.my.salesforce.com/services/apexrest/vlocity_cmt/tmforum/productopenapi/v1/productOffering/3830