POST
/
api
/
get_customer_blueprints
curl --location --request POST 'https://api.explo.co/api/get_customer_blueprints/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{ "customer_id": "8698a0e4-009d-4b2d-8a41-d7f35cf08b98" }'
{
  "success": 1,
  "blueprints": [
    { "id": 10, "embed_id": "A14aZ3", "name": "Customer 1 Blueprint" }
  ]
}

This endpoint gets all blueprints for a customer.

Body

customer_id
string
required

Your customer id

Response

success
number

Indicates whether the call was successful. 1 if successful, 0 if not.

blueprints
List Blueprint Object

List of blueprints attached to that customer

curl --location --request POST 'https://api.explo.co/api/get_customer_blueprints/' \
--header 'Content-Type: application/json' \
--header 'Explo-Authorization: Token <token>' \
--data-raw '{ "customer_id": "8698a0e4-009d-4b2d-8a41-d7f35cf08b98" }'
{
  "success": 1,
  "blueprints": [
    { "id": 10, "embed_id": "A14aZ3", "name": "Customer 1 Blueprint" }
  ]
}