GraphQL
Base:
http://api*****.shipede.com:4000/graphql
Request: login
Method : POST
- mutation{
- Login(
- data:{
- AcountId:6
- ApiKey: “yourapikeyhere”
- Wh:”moc1″
- }
- ){
- AcountID
- .
- .
- .
- }
- }
Parameters
Parameter | Type | Description |
---|---|---|
AcountId (*) | int | Your account ID |
APIKey (*) | varchar | Your API Key |
Wh (*) | varchar | This will be found in your ShipEdge account. Preferences > API Integration > Warehouse. |
Note: You need to login firt to have permissions to execute functions.
Example
Request: me
Method: POST
- {
- me{
- Address
- AccountID
- Activated
- }
- }
Parameters
AcountID: Float
CompanyName: String
ContactName: String
Address: String
Address2: String
City: String
Region: String
PostalCode: String
Country: String
Phone: String
Fax: String
HomePage: String
Email: String
AcountName: String
Status: Float
NewUserID: Float
Activated: String
KeyAPI: String
UserAgreement: Float
signup: Float
EmailBalanceNeg: Float
IDWEnterprise: Float
Closed: Float
LastDateUpdate: String
update_at: String
ClosedDate: String
central_id: Float
invitation_code: String
storage_fee_cicle: String
Note: You can add fields from the Accounts table.
Example
With Login
Without login
Request: replenishment
Method: POST
- {
- replenishment(data: {Coment: “Ship” skip: 5 take:10}) {
- request{
- RequestID
- UserID
- AcountID
- ComentRequest
- }
- totalCount
- }
- }
Parameters
Parameter | Type | Description |
---|---|---|
data | {} | Coment: Search by the ComentRequest field Skip: Skip the first n records Take: Take the first or next records Note: The fields are optional |
request | {} | RequestID: Float UserID: Float AcountID: Float DateRequest: String NameSupplier: String ComentRequest: String StatusRqt: Float DateStatus: String FlatIDa: String Typo: String CommentArchived: String Totalrecv: String SW_PAGADO: String SyncAPI: String Class_Paid: Float date_expected_arrival: String date_arrived: String po_num: String tracking_num: String fromApi: String WSStoreID: FloatNote: You can add fields from the Accounts table |
totalCount | Int | Total records to search |
Example
With Parameters to Search
Without Search
Request: create_replenishment
Method: POST
- {
- create_replenishment(
- data: {
- supplier_name: “Prueba”
- po_num: “123”
- tracking_num: “456”
- comments: “Hello”
- expected_delivery_date: “2019-10-10”
- pre_sync: “On”
- items: [
- { sku: “BC00002-01”, qty: 11 }
- { sku: “BC00003-01”, qty: 12 }
- { sku: “BC00004-01”, qty: 13}
- ]
- }
- ){
- RequestlD
- UserID
- }
- }
Parameters
Parameter | Type | Description |
---|---|---|
data | {} | supplier_name: supplier name origin po_num: Number tracking_num: Tracking Number comments: Comment to replenishment expected_delivery_date: Expedited delivery date pre_sync: Values On or Off Note: The fields are string |
items | [] | sku: qty: |
Note: You can add fields from the Request table |
Example
Result
Request: edit_replenishment
Method: POST
- {
- edit_replenishment(
- data: {
- reple_id: 991
- supplier_name: “Jose Luis Fer. H.”
- comments: “Cambiando algo en la informacion”
- pre_sync: On
- }
- ){
- RequestlD
- NameSupplier
- }
- }
Parameters
Parameter | Type | Description |
---|---|---|
data | {} | Reple_id: Id for replenishment (Integer) supplier_name: supplier name origin po_num: Number tracking_num: Tracking Number comments: Comment to replenishment expected_delivery_date: Expedited delivery date pre_sync: Values On or Off |
{} | Note: You can add fields from the Request table |
Example
Result