We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 18cab0e commit b21b2f5Copy full SHA for b21b2f5
3 files changed
official/guides/create-carrier-curls/ehub.sh
@@ -0,0 +1,15 @@
1
+curl -X POST https://api.easypost.com/v2/carrier_accounts \
2
+ -u "$EASYPOST_API_KEY": \
3
+ -H 'Content-Type: application/json' \
4
+ -d '{
5
+ "carrier_account": {
6
+ "type": "EhubAccount",
7
+ "description": "EhubAccount",
8
+ "credentials": {
9
+ "api_key": "VALUE"
10
+ },
11
+ "test_credentials": {
12
13
+ }
14
15
+}'
official/guides/create-carrier-curls/estafeta.sh
@@ -6,8 +6,30 @@ curl -X POST https://api.easypost.com/v2/carrier_accounts \
"type": "EstafetaAccount",
"description": "EstafetaAccount",
"credentials": {
+ "buy_api_key": "VALUE",
+ "buy_client_id": "VALUE",
+ "buy_client_secret": "VALUE",
"customer_number": "VALUE",
- "hub_id": "VALUE"
+ "hub_id": "VALUE",
+ "rate_api_key": "VALUE",
+ "rate_client_id": "VALUE",
16
+ "rate_client_secret": "VALUE",
17
+ "track_api_key": "VALUE",
18
+ "track_client_id": "VALUE",
19
+ "track_client_secret": "VALUE"
20
21
22
23
24
25
+ "customer_number": "VALUE",
26
27
28
29
30
31
32
33
}
34
35
}'
official/guides/create-carrier-curls/p2p.sh
@@ -0,0 +1,19 @@
+ "type": "P2PAccount",
+ "description": "P2PAccount",
+ "api_key": "VALUE",
+ "customer_id": "VALUE",
+ "username": "VALUE"
0 commit comments