Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .claude/skills/grid-api/SKILL.md
Original file line number Diff line number Diff line change
Expand Up @@ -165,6 +165,8 @@ curl -s -u "$GRID_CLIENT_ID:$GRID_CLIENT_SECRET" \

# Create customer (BUSINESS)
# businessInfo REQUIRES legalName, taxId, and incorporatedOn (ISO date YYYY-MM-DD).
# Always send businessType too: it's optional to the schema, but receivers can
# require it, and without it POST /quotes fails with MISSING_MANDATORY_USER_INFO.
curl -s -u "$GRID_CLIENT_ID:$GRID_CLIENT_SECRET" \
-X POST -H "Content-Type: application/json" \
-d '{
Expand All @@ -173,7 +175,8 @@ curl -s -u "$GRID_CLIENT_ID:$GRID_CLIENT_SECRET" \
"businessInfo": {
"legalName": "Acme Corporation, Inc.",
"taxId": "47-1234567",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
}
}' \
"$GRID_BASE_URL/customers" | jq .
Expand Down
3 changes: 2 additions & 1 deletion mintlify/global-p2p/onboarding/configuring-customers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,8 @@ curl -sS -X POST "https://api.lightspark.com/grid/2025-10-13/customers" \
"legalName": "Acme Corporation",
"registrationNumber": "789012345",
"taxId": "123-45-6789",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
},
"address": {
"line1": "456 Oak Avenue",
Expand Down
3 changes: 2 additions & 1 deletion mintlify/ramps/onboarding/configuring-customers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,8 @@ curl -X POST 'https://api.lightspark.com/grid/2025-10-13/customers' \
"businessInfo": {
"legalName": "Acme Corporation",
"taxId": "12-3456789",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
},
"address": {...}
}'
Expand Down
3 changes: 2 additions & 1 deletion mintlify/snippets/creating-customers/customers.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,8 @@ curl -sS -X POST "https://api.lightspark.com/grid/2025-10-13/customers" \
"legalName": "Acme Corporation",
"registrationNumber": "789012345",
"taxId": "123-45-6789",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
},
"address": {
"line1": "456 Oak Avenue",
Expand Down
3 changes: 2 additions & 1 deletion mintlify/snippets/kyc/kyc-regulated.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ The examples below show a more comprehensive set of data. Not all fields are str
"legalName": "Acme Corporation",
"registrationNumber": "789012345",
"taxId": "123-45-6789",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
},
"address": {
"line1": "456 Oak Avenue",
Expand Down
3 changes: 2 additions & 1 deletion mintlify/snippets/kyc/kyc-unregulated.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,8 @@ The shape of the flow depends on the customer type:
"legalName": "Acme Corporation",
"registrationNumber": "789012345",
"taxId": "123-45-6789",
"incorporatedOn": "2018-03-14"
"incorporatedOn": "2018-03-14",
"businessType": "INFORMATION"
},
"address": {
"line1": "456 Oak Avenue",
Expand Down
Loading