GraphQL

Base: 

http://api*****.shipede.com:4000/graphql

Request: login

Method : POST

  1. mutation{
  2.   Login(
  3.     data:{
  4.       AcountId:6
  5.       ApiKey: “yourapikeyhere”
  6.       Wh:”moc1″
  7.      }
  8. ){
  9.     AcountID
  10.     .
  11.     .
  12.     .
  13.   }
  14. }

Parameters

ParameterTypeDescription
AcountId (*)intYour account ID
APIKey (*)varchar Your API Key
Wh (*)varcharThis 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

  1. {
  2.   me{
  3.   Address
  4.   AccountID
  5.   Activated
  6.   }
  7. }

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

  1. {
  2.   replenishment(data: {Coment: “Ship” skip: 5 take:10}) {
  3.     request{
  4.       RequestID
  5.       UserID
  6.       AcountID
  7.       ComentRequest
  8.     }
  9.   totalCount
  10.   }
  11. }

Parameters

ParameterTypeDescription
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
totalCountIntTotal records to search

Example

With Parameters to Search

Without Search

Request: create_replenishment

Method: POST

  1. {
  2.   create_replenishment(
  3.    data: {
  4.      supplier_name: “Prueba”
  5.      po_num: “123”
  6.      tracking_num: “456” 
  7.      comments: “Hello” 
  8.      expected_delivery_date: “2019-10-10”
  9.      pre_sync: “On”
  10.      items: [ 
  11.        { sku: “BC00002-01”, qty: 11 }
  12.        { sku: “BC00003-01”, qty: 12 }
  13.        { sku: “BC00004-01”, qty: 13}
  14.      ]
  15.    }
  16.  ){
  17.  RequestlD
  18.  UserID
  19.  }
  20. }

Parameters

ParameterTypeDescription
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

  1. {
  2.   edit_replenishment(
  3.    data: {
  4.     reple_id: 991
  5.     supplier_name: “Jose Luis Fer. H.”
  6.     comments: “Cambiando algo en la informacion”
  7.     pre_sync: On
  8.    }
  9.  ){
  10.  RequestlD
  11.  NameSupplier
  12.  }
  13. }

Parameters

ParameterTypeDescription
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