All URIs are relative to https://kingsrook.localhost-testsubdomain1.infopluswms.com:8443/infoplus-wms/api
Method | HTTP request | Description |
---|---|---|
add_item_receipt_activity | POST /beta/itemReceiptActivity | Create an itemReceiptActivity |
add_item_receipt_activity_audit | PUT /beta/itemReceiptActivity/{itemReceiptActivityId}/audit/{itemReceiptActivityAudit} | Add new audit for an itemReceiptActivity |
add_item_receipt_activity_file | POST /beta/itemReceiptActivity/{itemReceiptActivityId}/file/{fileName} | Attach a file to an itemReceiptActivity |
add_item_receipt_activity_file_by_url | POST /beta/itemReceiptActivity/{itemReceiptActivityId}/file | Attach a file to an itemReceiptActivity by URL. |
add_item_receipt_activity_tag | PUT /beta/itemReceiptActivity/{itemReceiptActivityId}/tag/{itemReceiptActivityTag} | Add new tags for an itemReceiptActivity. |
delete_item_receipt_activity | DELETE /beta/itemReceiptActivity/{itemReceiptActivityId} | Delete an itemReceiptActivity |
delete_item_receipt_activity_file | DELETE /beta/itemReceiptActivity/{itemReceiptActivityId}/file/{fileId} | Delete a file for an itemReceiptActivity. |
delete_item_receipt_activity_tag | DELETE /beta/itemReceiptActivity/{itemReceiptActivityId}/tag/{itemReceiptActivityTag} | Delete a tag for an itemReceiptActivity. |
get_duplicate_item_receipt_activity_by_id | GET /beta/itemReceiptActivity/duplicate/{itemReceiptActivityId} | Get a duplicated an itemReceiptActivity by id |
get_item_receipt_activity_by_filter | GET /beta/itemReceiptActivity/search | Search itemReceiptActivitys by filter |
get_item_receipt_activity_by_id | GET /beta/itemReceiptActivity/{itemReceiptActivityId} | Get an itemReceiptActivity by id |
get_item_receipt_activity_files | GET /beta/itemReceiptActivity/{itemReceiptActivityId}/file | Get the files for an itemReceiptActivity. |
get_item_receipt_activity_tags | GET /beta/itemReceiptActivity/{itemReceiptActivityId}/tag | Get the tags for an itemReceiptActivity. |
update_item_receipt_activity | PUT /beta/itemReceiptActivity | Update an itemReceiptActivity |
ItemReceiptActivity add_item_receipt_activity(body)
Create an itemReceiptActivity
Inserts a new itemReceiptActivity using the specified data.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
body = Infoplus.ItemReceiptActivity() # ItemReceiptActivity | ItemReceiptActivity to be inserted.
try:
# Create an itemReceiptActivity
api_response = api_instance.add_item_receipt_activity(body)
pprint(api_response)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->add_item_receipt_activity: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ItemReceiptActivity | ItemReceiptActivity to be inserted. |
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
add_item_receipt_activity_audit(item_receipt_activity_id, item_receipt_activity_audit)
Add new audit for an itemReceiptActivity
Adds an audit to an existing itemReceiptActivity.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to add an audit to
item_receipt_activity_audit = 'item_receipt_activity_audit_example' # str | The audit to add
try:
# Add new audit for an itemReceiptActivity
api_instance.add_item_receipt_activity_audit(item_receipt_activity_id, item_receipt_activity_audit)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->add_item_receipt_activity_audit: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to add an audit to | |
item_receipt_activity_audit | str | The audit to add |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
add_item_receipt_activity_file(item_receipt_activity_id, file_name)
Attach a file to an itemReceiptActivity
Adds a file to an existing itemReceiptActivity.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to add a file to
file_name = 'file_name_example' # str | Name of file
try:
# Attach a file to an itemReceiptActivity
api_instance.add_item_receipt_activity_file(item_receipt_activity_id, file_name)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->add_item_receipt_activity_file: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to add a file to | |
file_name | str | Name of file |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
add_item_receipt_activity_file_by_url(body, item_receipt_activity_id)
Attach a file to an itemReceiptActivity by URL.
Adds a file to an existing itemReceiptActivity by URL.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
body = Infoplus.RecordFile() # RecordFile | The url and optionly fileName to be used.
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to add an file to
try:
# Attach a file to an itemReceiptActivity by URL.
api_instance.add_item_receipt_activity_file_by_url(body, item_receipt_activity_id)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->add_item_receipt_activity_file_by_url: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | RecordFile | The url and optionly fileName to be used. | |
item_receipt_activity_id | int | Id of the itemReceiptActivity to add an file to |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
add_item_receipt_activity_tag(item_receipt_activity_id, item_receipt_activity_tag)
Add new tags for an itemReceiptActivity.
Adds a tag to an existing itemReceiptActivity.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to add a tag to
item_receipt_activity_tag = 'item_receipt_activity_tag_example' # str | The tag to add
try:
# Add new tags for an itemReceiptActivity.
api_instance.add_item_receipt_activity_tag(item_receipt_activity_id, item_receipt_activity_tag)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->add_item_receipt_activity_tag: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to add a tag to | |
item_receipt_activity_tag | str | The tag to add |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_item_receipt_activity(item_receipt_activity_id)
Delete an itemReceiptActivity
Deletes the itemReceiptActivity identified by the specified id.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to be deleted.
try:
# Delete an itemReceiptActivity
api_instance.delete_item_receipt_activity(item_receipt_activity_id)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->delete_item_receipt_activity: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to be deleted. |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_item_receipt_activity_file(item_receipt_activity_id, file_id)
Delete a file for an itemReceiptActivity.
Deletes an existing itemReceiptActivity file using the specified data.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to remove file from
file_id = 56 # int | Id of the file to delete
try:
# Delete a file for an itemReceiptActivity.
api_instance.delete_item_receipt_activity_file(item_receipt_activity_id, file_id)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->delete_item_receipt_activity_file: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to remove file from | |
file_id | int | Id of the file to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
delete_item_receipt_activity_tag(item_receipt_activity_id, item_receipt_activity_tag)
Delete a tag for an itemReceiptActivity.
Deletes an existing itemReceiptActivity tag using the specified data.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to remove tag from
item_receipt_activity_tag = 'item_receipt_activity_tag_example' # str | The tag to delete
try:
# Delete a tag for an itemReceiptActivity.
api_instance.delete_item_receipt_activity_tag(item_receipt_activity_id, item_receipt_activity_tag)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->delete_item_receipt_activity_tag: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to remove tag from | |
item_receipt_activity_tag | str | The tag to delete |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ItemReceiptActivity get_duplicate_item_receipt_activity_by_id(item_receipt_activity_id)
Get a duplicated an itemReceiptActivity by id
Returns a duplicated itemReceiptActivity identified by the specified id.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to be duplicated.
try:
# Get a duplicated an itemReceiptActivity by id
api_response = api_instance.get_duplicate_item_receipt_activity_by_id(item_receipt_activity_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->get_duplicate_item_receipt_activity_by_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to be duplicated. |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
list[ItemReceiptActivity] get_item_receipt_activity_by_filter(filter=filter, page=page, limit=limit, sort=sort)
Search itemReceiptActivitys by filter
Returns the list of itemReceiptActivitys that match the given filter.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
filter = 'filter_example' # str | Query string, used to filter results. (optional)
page = 56 # int | Result page number. Defaults to 1. (optional)
limit = 56 # int | Maximum results per page. Defaults to 20. Max allowed value is 250. (optional)
sort = 'sort_example' # str | Sort results by specified field. (optional)
try:
# Search itemReceiptActivitys by filter
api_response = api_instance.get_item_receipt_activity_by_filter(filter=filter, page=page, limit=limit, sort=sort)
pprint(api_response)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->get_item_receipt_activity_by_filter: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
filter | str | Query string, used to filter results. | [optional] |
page | int | Result page number. Defaults to 1. | [optional] |
limit | int | Maximum results per page. Defaults to 20. Max allowed value is 250. | [optional] |
sort | str | Sort results by specified field. | [optional] |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
ItemReceiptActivity get_item_receipt_activity_by_id(item_receipt_activity_id)
Get an itemReceiptActivity by id
Returns the itemReceiptActivity identified by the specified id.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to be returned.
try:
# Get an itemReceiptActivity by id
api_response = api_instance.get_item_receipt_activity_by_id(item_receipt_activity_id)
pprint(api_response)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->get_item_receipt_activity_by_id: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to be returned. |
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_item_receipt_activity_files(item_receipt_activity_id)
Get the files for an itemReceiptActivity.
Get all existing itemReceiptActivity files.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to get files for
try:
# Get the files for an itemReceiptActivity.
api_instance.get_item_receipt_activity_files(item_receipt_activity_id)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->get_item_receipt_activity_files: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to get files for |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
get_item_receipt_activity_tags(item_receipt_activity_id)
Get the tags for an itemReceiptActivity.
Get all existing itemReceiptActivity tags.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
item_receipt_activity_id = 56 # int | Id of the itemReceiptActivity to get tags for
try:
# Get the tags for an itemReceiptActivity.
api_instance.get_item_receipt_activity_tags(item_receipt_activity_id)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->get_item_receipt_activity_tags: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
item_receipt_activity_id | int | Id of the itemReceiptActivity to get tags for |
void (empty response body)
- Content-Type: Not defined
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]
update_item_receipt_activity(body)
Update an itemReceiptActivity
Updates an existing itemReceiptActivity using the specified data.
from __future__ import print_function
import time
import Infoplus
from Infoplus.rest import ApiException
from pprint import pprint
# Configure API key authorization: api_key
configuration = Infoplus.Configuration()
configuration.api_key['API-Key'] = 'YOUR_API_KEY'
# Uncomment below to setup prefix (e.g. Bearer) for API key, if needed
# configuration.api_key_prefix['API-Key'] = 'Bearer'
# create an instance of the API class
api_instance = Infoplus.ItemReceiptActivityApi(Infoplus.ApiClient(configuration))
body = Infoplus.ItemReceiptActivity() # ItemReceiptActivity | ItemReceiptActivity to be updated.
try:
# Update an itemReceiptActivity
api_instance.update_item_receipt_activity(body)
except ApiException as e:
print("Exception when calling ItemReceiptActivityApi->update_item_receipt_activity: %s\n" % e)
Name | Type | Description | Notes |
---|---|---|---|
body | ItemReceiptActivity | ItemReceiptActivity to be updated. |
void (empty response body)
- Content-Type: application/json
- Accept: application/json
[Back to top] [Back to API list] [Back to Model list] [Back to README]