GrowthZone REST API API Reference
undefined
API Endpoint
https://app.memberzone.org
Request Content-Types: application/json
Response Content-Types: application/json
Schemes: https
Version: v1.0
Paths
Returns a list of all vendors.
Returns a list of all vendors.
The list of vendors.
The user is not authorized to access this operation.
Response Example (200 OK)
[
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string",
"Actions": "string"
}
]
Save a Vendor.
Saves a new Vendor with the model information provided.
The vendor to save.
Request Example
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string"
}
The vendor model that was saved.
Response Example (200 OK)
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string",
"Actions": "string"
}
Return a vendor
Returns a vendor by it's ID.
The ID of the vendor return.
The vendor model.
The user is not authorized to access this operation.
Response Example (200 OK)
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string"
}
Delete a Vendor.
Delete a Vendor.
The ID of the vendor to delete.
The ID of the vendor that was deleted.
The user is not authorized to access this operation.
Check the duplication vendors based on the name.
Check the duplication vendors based on the name.
The model that contains the information to test for duplicates.
Request Example
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string"
}
The list of potential duplicates.
Response Example (200 OK)
[
{
"Id": "integer",
"Name": "string",
"Description": "string"
}
]
Search for a vendor name.
Returns a list of vendors that match the search text.
(no description)
(no description)
The vendor model.
The user is not authorized to access this operation.
Response Example (200 OK)
[
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string",
"Actions": "string"
}
]
Schema Definitions
VendorCollectionItemModel: object
- VendorId: integer
- Name: string
- WebsiteUrl: string
- Actions: string
Example
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string",
"Actions": "string"
}
AddEditVendorViewModel: object
- VendorId: integer
- Name: string
- WebsiteUrl: string
Example
{
"VendorId": "integer",
"Name": "string",
"WebsiteUrl": "string"
}